summaryrefslogtreecommitdiff
path: root/scripts/phpize.in
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-04-07 22:03:02 +0000
committerfoobar <sniper@php.net>2005-04-07 22:03:02 +0000
commitf3ee713a423d9912b6b82e9463f9c6628b9d6dcd (patch)
tree8ea692ad99135c313066bc1c90cfea9f3be5a96f /scripts/phpize.in
parentaea6208e9e85d9f4314c5bfd08c5de8f5a75b987 (diff)
downloadphp-git-f3ee713a423d9912b6b82e9463f9c6628b9d6dcd.tar.gz
Fix the echo/backquote issues + aclocal
Diffstat (limited to 'scripts/phpize.in')
-rw-r--r--scripts/phpize.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/phpize.in b/scripts/phpize.in
index 97439b4bb7..3a90174368 100644
--- a/scripts/phpize.in
+++ b/scripts/phpize.in
@@ -66,7 +66,7 @@ phpize_print_api_numbers()
phpize_no_shtool()
{
- echo <<EOF
+ cat <<EOF
shtool at '$builddir/build/shtool' not executable.
Make sure that the file exists and is executable and then rerun this script.
@@ -90,16 +90,16 @@ phpize_check_autotools()
test -z "$PHP_AUTOCONF" && PHP_AUTOCONF=autoconf
test -z "$PHP_AUTOHEADER" && PHP_AUTOHEADER=autoheader
- if ! test -x "$php_shtool path $PHP_AUTOCONF"; then
- echo <<EOF
+ if ! test -x "`$php_shtool path $PHP_AUTOCONF`"; then
+ cat <<EOF
Cannot find autoconf. Please check your autoconf installation and the \$PHP_AUTOCONF
environment variable is set correctly and then rerun this script.
EOF
exit 1
fi
- if ! test -x "$php_shtool path $PHP_AUTOHEADER"; then
- echo <<EOF
+ if ! test -x "`$php_shtool path $PHP_AUTOHEADER`"; then
+ cat <<EOF
Cannot find autoheader. Please check your autoconf installation and the \$PHP_AUTOHEADER
environment variable is set correctly and then rerun this script.
@@ -114,7 +114,7 @@ phpize_copy_files()
(cd "$phpdir" && cp $FILES_BUILD "$builddir"/build)
(cd "$phpdir" && cp $FILES "$builddir")
- (cd "$builddir" && cat ./build/libtool.m4 >> acinclude.m4)
+ (cd "$builddir" && cat acinclude.m4 ./build/libtool.m4 > aclocal.m4)
}
phpize_replace_prefix()