From 57108894d09ac70c218a8cbe7c28e5193f606e6c Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Fri, 29 Jun 2007 09:14:42 +0000 Subject: [PATCH] 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. --- Makefile.global | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1