summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac8
-rw-r--r--gs/configure.ac6
2 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index e334451e9..07450bca1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -122,16 +122,16 @@ LIBTIFFCONFDIR=./tiff-config
echo
echo "Running libtiff configure script..."
olddir=`pwd`
-if ! test -d $LIBTIFFCONFDIR ; then
- mkdir $LIBTIFFCONFDIR
+if ! test -d "$LIBTIFFCONFDIR" ; then
+ mkdir "$LIBTIFFCONFDIR"
fi
-cd $LIBTIFFCONFDIR && $olddir/$LIBTIFFDIR/configure --disable-jbig --disable-lzma $SUBCONFIG_OPTS
+cd "$LIBTIFFCONFDIR" && "$olddir"/"$LIBTIFFDIR"/configure --disable-jbig --disable-lzma $SUBCONFIG_OPTS
status=$?
if test "$status" -ne 0 ; then
AC_MSG_ERROR([libtiff configure script failed], $status)
fi
-cd $olddir
+cd "$olddir"
echo
echo "Continuing with GhostPDL configuration..."
diff --git a/gs/configure.ac b/gs/configure.ac
index a3a112ceb..735acf647 100644
--- a/gs/configure.ac
+++ b/gs/configure.ac
@@ -1088,10 +1088,10 @@ if test $SHARE_LIBTIFF -eq 0; then
echo
echo "Running libtiff configure script..."
olddir=`pwd`
- if ! test -d $LIBTIFFCONFDIR ; then
- mkdir $LIBTIFFCONFDIR
+ if ! test -d "$LIBTIFFCONFDIR" ; then
+ mkdir "$LIBTIFFCONFDIR"
fi
- cd "$LIBTIFFCONFDIR" && $olddir/$LIBTIFFDIR/configure --disable-jbig --disable-lzma $SUBCONFIG_OPTS
+ cd "$LIBTIFFCONFDIR" && "$olddir"/"$LIBTIFFDIR"/configure --disable-jbig --disable-lzma $SUBCONFIG_OPTS
status=$?
if test "$status" -ne 0 ; then
AC_MSG_ERROR([libtiff configure script failed], $status)