diff options
author | Derick Rethans <derick@php.net> | 2003-01-02 13:01:33 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2003-01-02 13:01:33 +0000 |
commit | 19ae16a693be401a457d454b19b609e92a083b96 (patch) | |
tree | 7e7399bd6e9b0cb233e8d6def662f681e407e6a0 /Makefile.global | |
parent | 4da2e804e0bf0c6cdfacc6e315a755aaf578163a (diff) | |
download | php-git-19ae16a693be401a457d454b19b609e92a083b96.tar.gz |
- Fix "make test" when CC was set to something with a parameter
Diffstat (limited to 'Makefile.global')
-rw-r--r-- | Makefile.global | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.global b/Makefile.global index f575a20885..230b7675ae 100644 --- a/Makefile.global +++ b/Makefile.global @@ -49,7 +49,7 @@ install-su: install-pear install-tester test: $(SAPI_CLI_PATH) @TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \ TEST_PHP_SRCDIR=$(top_srcdir) \ - CC=$(CC) \ + CC="$(CC)" \ $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 'safe_mode=0' $(top_srcdir)/run-tests.php $(TESTS) clean: |