diff options
author | Jani Taskinen <jani@php.net> | 2007-08-03 14:01:40 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-08-03 14:01:40 +0000 |
commit | 498fbd90f6dfe694bf1670d7038fbef446f5f35e (patch) | |
tree | ec5587b612a8dd0cb90a77684cc9c39d20081ae7 /Makefile.global | |
parent | b6c96790ba1e5826afae93fd9fce9b36704e469e (diff) | |
download | php-git-498fbd90f6dfe694bf1670d7038fbef446f5f35e.tar.gz |
- Fix issue with broken shells
# I truly hate Solaris..
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` |