From da06a345cc290ca29234bc231fc9174d2780cf4f Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Sun, 8 Mar 2009 12:54:04 +0100 Subject: to be portable, use options first, arguments last Signed-off-by: Michael Adam --- source3/script/installmo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/script/installmo.sh') diff --git a/source3/script/installmo.sh b/source3/script/installmo.sh index 9c4ab1eefe..5ca3371d80 100644 --- a/source3/script/installmo.sh +++ b/source3/script/installmo.sh @@ -35,7 +35,7 @@ for dir in $SRCDIR/locale/*; do if test "$mode" = 'install'; then echo "Installing $f as $FNAME" touch "$FNAME" - $MSGFMT "$f" -f -o "$FNAME" + $MSGFMT -f -o "$FNAME" "$f" if test ! -f "$FNAME"; then echo "Cannot install $FNAME. Does $USER have privileges?" exit 1 -- cgit