From 2fd4e8146c9e7f6de7e8e260be9833e875734f45 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 3 Jul 2007 15:56:21 +0000 Subject: [PATCH] Fixed "make test" mistakes --- Makefile.global | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.global b/Makefile.global index ad3ddd26c5..d79b7d500f 100644 --- a/Makefile.global +++ b/Makefile.global @@ -85,8 +85,8 @@ test: all $(PHP_EXECUTABLE) $(PHP_TEST_SETTINGS) $(top_srcdir)/run-tests.php -d extension_dir=modules/ $(PHP_TEST_SHARED_EXTENSIONS) tests/; \ elif test ! -z "$(SAPI_CLI_PATH)" && test -x "$(SAPI_CLI_PATH)"; then \ INI_FILE=`$(top_builddir)/$(SAPI_CLI_PATH) -r 'echo php_ini_loaded_file();'`; \ - if test "$(INI_FILE)"; then \ - $(EGREP) -v '^extension[\t\ ]=' "$(INI_FILE)" > $(top_builddir)/tmp-php.ini; \ + if test "$$INI_FILE"; then \ + $(EGREP) -v '^extension[\t\ ]*=' "$$INI_FILE" > $(top_builddir)/tmp-php.ini; \ else \ echo > $(top_builddir)/tmp-php.ini; \ fi; \ -- 2.50.1