]> granicus.if.org Git - apache/commitdiff
Add inverted commas to the build script parameter so that it works correctly when...
authorGraham Leggett <minfrin@apache.org>
Wed, 30 Mar 2005 12:45:23 +0000 (12:45 +0000)
committerGraham Leggett <minfrin@apache.org>
Wed, 30 Mar 2005 12:45:23 +0000 (12:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@159479 13f79535-47bb-0310-9956-ffa450edef68

build/pkg/buildpkg.sh

index 0e467d1adb9663b80c1ad77878ede779c98d7459..4dd7d81756b808aef0ead0012b1520e0c36c10c2 100755 (executable)
@@ -50,13 +50,13 @@ do
   shift
 done
 
-if [ ! -f $apr_config -a ! -f $apr_config/configure.in ]; then
+if [ ! -f "$apr_config" -a ! -f "$apr_config/configure.in" ]; then
   echo "The apr source directory / apr-1-config could not be found"
   echo "Usage: buildpkg [--with-apr=[dir|file]] [--with-apr-util=[dir|file]]"
   exit 1
 fi
 
-if [ ! -f $apu_config -a ! -f $apu_config/configure.in ]; then
+if [ ! -f "$apu_config" -a ! -f "$apu_config/configure.in" ]; then
   echo "The apu source directory / apu-1-config could not be found"
   echo "Usage: buildpkg [--with-apr=[dir|file]] [--with-apr-util=[dir|file]]"
   exit 1