From: Björn Jacke Date: Sun, 8 Mar 2009 11:54:04 +0000 (+0100) Subject: to be portable, use options first, arguments last X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02368626a273368a3b731d2b413e90d91ed15c5c;p=thirdparty%2Fsamba.git to be portable, use options first, arguments last Signed-off-by: Michael Adam --- diff --git a/source/script/installmo.sh b/source/script/installmo.sh old mode 100755 new mode 100644 index 9c4ab1eefe6..5ca3371d80e --- a/source/script/installmo.sh +++ b/source/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