summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2009-03-08 12:54:04 +0100
committerMichael Adam <obnox@samba.org>2009-03-17 16:09:15 +0100
commitda06a345cc290ca29234bc231fc9174d2780cf4f (patch)
tree5cddce995b8fa5c38cb793737d9af98c3f3d983d /source3/script
parentd352d3c713d86e2657f91fb86686392224764770 (diff)
downloadsamba-da06a345cc290ca29234bc231fc9174d2780cf4f.tar.gz
samba-da06a345cc290ca29234bc231fc9174d2780cf4f.tar.bz2
samba-da06a345cc290ca29234bc231fc9174d2780cf4f.zip
to be portable, use options first, arguments last
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/script')
-rw-r--r--source3/script/installmo.sh2
1 files changed, 1 insertions, 1 deletions
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