diff options
-rw-r--r-- | scripts/phpize.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/phpize.in b/scripts/phpize.in index 8c19ef15f4..5af8761dbb 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -75,9 +75,9 @@ EOF phpize_check_shtool() { - test -x $builddir/build/shtool || chmod +x $builddir/build/shtool + test -x "$builddir/build/shtool" || chmod +x "$builddir/build/shtool" - if test ! -x $builddir/build/shtool; then + if test ! -x "$builddir/build/shtool"; then phpize_no_shtool exit 1 fi @@ -88,15 +88,15 @@ phpize_copy_files() { 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") } phpize_replace_prefix() { sed \ -e "s#@prefix@#$prefix#" \ - < $phpdir/phpize.m4 > configure.in + < "$phpdir/phpize.m4" > configure.in } phpize_autotools() |