]> granicus.if.org Git - php/commitdiff
- MFH (fix for #28847)
authorJan Lehnardt <jan@php.net>
Sat, 19 Jun 2004 20:37:55 +0000 (20:37 +0000)
committerJan Lehnardt <jan@php.net>
Sat, 19 Jun 2004 20:37:55 +0000 (20:37 +0000)
scripts/phpize.in

index 0fae6151b9937d0df9ce23749e8800be6300560f..7dc031ccbc56fa2ce9abdeb34e544921c715272c 100644 (file)
@@ -45,20 +45,20 @@ esac
 
 test -d build || mkdir build
 
-(cd $phpdir && cp $FILES_BUILD "$builddir"/build)
-(cd $phpdir && cp $FILES "$builddir")
+(cd "$phpdir" && cp $FILES_BUILD "$builddir"/build)
+(cd "$phpdir" && cp $FILES "$builddir")
 
 sed \
 -e "s#@prefix@#$prefix#" \
-< $phpdir/phpize.m4 > configure.in
+< "$phpdir/phpize.m4" > configure.in
 
 touch install-sh mkinstalldirs missing
 
 aclocal || exit 1
 autoconf || exit 1
 autoheader || exit 1
-test -x $builddir/build/shtool || chmod +x $builddir/build/shtool
-if test ! -x $builddir/build/shtool; then
+test -x "$builddir/build/shtool" || chmod +x "$builddir/build/shtool"
+if test ! -x "$builddir/build/shtool"; then
   echo "shtool at '$builddir/build/shtool' not executable. "
   echo "Make sure that the file exists and is executable and then rerun this script. "
   echo