diff options
author | Jani Taskinen <jani@php.net> | 2007-08-03 14:01:56 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-08-03 14:01:56 +0000 |
commit | a847d2c6fe9ce083753882f4fd8c7097584b811a (patch) | |
tree | 0d1edfbaf38226dd6f8dc8b1e079b68554d53977 /Makefile.global | |
parent | fd088beb0643098dee7a1d0eddc5dc502c86d30d (diff) | |
download | php-git-a847d2c6fe9ce083753882f4fd8c7097584b811a.tar.gz |
MFH: fix for broken shells
Diffstat (limited to 'Makefile.global')
-rw-r--r-- | Makefile.global | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.global b/Makefile.global index 3457c7809c..b4cec63319 100644 --- a/Makefile.global +++ b/Makefile.global @@ -69,8 +69,8 @@ install-headers: PHP_TEST_SETTINGS = -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1' PHP_TEST_SHARED_EXTENSIONS = ` \ - if test "$(PHP_MODULES)"; then \ - for i in $(PHP_MODULES); do \ + if test "x$(PHP_MODULES)" != "x"; then \ + for i in $(PHP_MODULES)""; do \ . $$i; $(top_srcdir)/build/shtool echo -n -- " -d extension=$$dlname"; \ done; \ fi` |