From f4f844af197b598525623b9be627882080428a29 Mon Sep 17 00:00:00 2001 From: Jan Lehnardt Date: Sat, 19 Jun 2004 19:39:56 +0000 Subject: - phpize now can handle directories with spaces in their name (#28847) --- scripts/phpize.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'scripts/phpize.in') 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() -- cgit v1.2.1