From: Antony Dovgal Date: Fri, 29 Jun 2007 09:14:42 +0000 (+0000) Subject: fix `make test` with shared extensions X-Git-Tag: BEFORE_IMPORT_OF_MYSQLND~351 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57108894d09ac70c218a8cbe7c28e5193f606e6c;p=php fix `make test` with shared extensions # ok, this is the last ksh-related fix. # it seems to be completely impossible to make it work, so I won't even try to do it anymore. # complain to Sun and ksh authors if you have any problems. --- diff --git a/Makefile.global b/Makefile.global index aba33d6ab6..422bb44d3f 100644 --- a/Makefile.global +++ b/Makefile.global @@ -67,7 +67,7 @@ install-headers: done; \ fi -PHP_TEST_SHARED_EXTENSIONS=`(if test ! -z "$(PHP_MODULES)"; then for i in "$(PHP_MODULES)"; do . $$i ; echo -n '-d extension=$$dlname '; done; fi;)` +PHP_TEST_SHARED_EXTENSIONS=`(if test ! -z "$(PHP_MODULES)"; then for i in "$(PHP_MODULES)"; do . $$i ; echo -n "-d extension=$$dlname "; done; fi;)` PHP_TEST_SETTINGS=-d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1' test: all