summaryrefslogtreecommitdiff
path: root/glib-gettextize.in
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-05-30 21:25:38 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-05-30 21:25:38 +0000
commit8f7b2b5cc15e1c6792e6bac7fa74bd4a4d771e33 (patch)
tree9b1371833d05e49f0ba0728f191b3119b509eeeb /glib-gettextize.in
parente41ebdcfcd6c7eeefafe00b4d983aa0c4855d312 (diff)
Quote $srcdir to handle $srcdir with spaces (#107850, Evan Martin)
Fri May 30 17:24:23 2003 Owen Taylor <otaylor@redhat.com> * glib-gettextize.in: Quote $srcdir to handle $srcdir with spaces (#107850, Evan Martin)
Diffstat (limited to 'glib-gettextize.in')
-rw-r--r--glib-gettextize.in22
1 files changed, 11 insertions, 11 deletions
diff --git a/glib-gettextize.in b/glib-gettextize.in
index e205c563f..f424f8b71 100644
--- a/glib-gettextize.in
+++ b/glib-gettextize.in
@@ -83,7 +83,7 @@ fi
# Fill in the command line options value.
if test $# -eq 1; then
srcdir=$1
- if cd $srcdir; then
+ if cd "$srcdir"; then
srcdir=`pwd`
else
$echo "Cannot change directory to \`$srcdir'"
@@ -124,9 +124,9 @@ for file in *; do
intl | po)
;;
*)
- rm -f $srcdir/$file
- ($try_ln_s && ln -s $gettext_dir/$file $srcdir/$file && $echo "Symlinking file $file") 2>/dev/null ||
- { $echo "Copying file $file"; cp $file $srcdir/$file; }
+ rm -f "$srcdir/$file"
+ ($try_ln_s && ln -s $gettext_dir/$file "$srcdir/$file" && $echo "Symlinking file $file") 2>/dev/null ||
+ { $echo "Copying file $file"; cp $file "$srcdir/$file"; }
;;
esac
done
@@ -134,17 +134,17 @@ done
# Copy files to po/ subdirectory.
cd po
for file in *; do
- rm -f $srcdir/po/$file
- ($try_ln_s && ln -s $gettext_dir/po/$file $srcdir/po/$file && $echo "Symlinking file po/$file") 2>/dev/null ||
- { $echo "Copying file po/$file"; cp $file $srcdir/po/$file; }
+ rm -f "$srcdir/po/$file"
+ ($try_ln_s && ln -s $gettext_dir/po/$file "$srcdir/po/$file" && $echo "Symlinking file po/$file") 2>/dev/null ||
+ { $echo "Copying file po/$file"; cp $file "$srcdir/po/$file"; }
done
-if test -f $srcdir/po/cat-id-tbl.c; then
+if test -f "$srcdir/po/cat-id-tbl.c"; then
$echo "Removing po/cat-id-tbl.c"
- rm -f $srcdir/po/cat-id-tbl.c
+ rm -f "$srcdir/po/cat-id-tbl.c"
fi
-if test -f $srcdir/po/stamp-cat-id; then
+if test -f "$srcdir/po/stamp-cat-id"; then
$echo "Removing po/stamp-cat-id"
- rm -f $srcdir/po/stamp-cat-id
+ rm -f "$srcdir/po/stamp-cat-id"
fi
echo