diff options
author | obache <obache> | 2007-05-10 15:42:29 +0000 |
---|---|---|
committer | obache <obache> | 2007-05-10 15:42:29 +0000 |
commit | fe926e42e2b1e9a3eb2ed1c29521ff9c774cad5b (patch) | |
tree | d1ec9b0f6a18b0dc697a0a895c85306deaa6fdb6 /mk/tools | |
parent | 6694883135bb7c5aa3e725ff704414c77a574bb6 (diff) | |
download | pkgsrc-fe926e42e2b1e9a3eb2ed1c29521ff9c774cad5b.tar.gz |
Recognize argment "-" as $pofile.
Diffstat (limited to 'mk/tools')
-rwxr-xr-x | mk/tools/msgfmt.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/tools/msgfmt.sh b/mk/tools/msgfmt.sh index d12d9fce86b..123673b11dc 100755 --- a/mk/tools/msgfmt.sh +++ b/mk/tools/msgfmt.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: msgfmt.sh,v 1.27 2007/05/07 09:31:05 obache Exp $ +# $NetBSD: msgfmt.sh,v 1.28 2007/05/10 15:42:29 obache Exp $ # # Copyright (c) 2006 The NetBSD Foundation, Inc. # All rights reserved. @@ -117,7 +117,7 @@ while test $# -gt 0; do # skip all checks shift ;; - [!-]*) + [!-]*|-) pofile="$1" cmd="$cmd -"; shift ;; |