diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-03-08 14:41:45 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-03-08 14:41:45 +0000 |
commit | 27e175eef0ccd796d282effdeb7c984e54c51208 (patch) | |
tree | e49e336eba11387fef01e3e8b15405d121c52b13 /Makefile.gcov | |
parent | 689eea9c3c89c946bc34939158e2fcc773ed26b7 (diff) | |
download | php-git-27e175eef0ccd796d282effdeb7c984e54c51208.tar.gz |
So long safe_mode mode.
Also removed the magic_quotes configure option, no longer relevant since
the magic is gone :-).
Diffstat (limited to 'Makefile.gcov')
-rw-r--r-- | Makefile.gcov | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.gcov b/Makefile.gcov index 85f93e9db6..6d7a558104 100644 --- a/Makefile.gcov +++ b/Makefile.gcov @@ -13,13 +13,13 @@ lcov-test: all TEST_PHP_EXECUTABLE=$(PHP_EXECUTABLE) \ TEST_PHP_SRCDIR=$(top_srcdir) \ CC="$(CC)" \ - $(PHP_EXECUTABLE) -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php -d 'extension_dir=modules/' -d `( . $(PHP_MODULES) ; echo extension=$$dlname)` tests/; \ + $(PHP_EXECUTABLE) -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php -d 'extension_dir=modules/' -d `( . $(PHP_MODULES) ; echo extension=$$dlname)` tests/; \ elif test ! -z "$(SAPI_CLI_PATH)" && test -x "$(SAPI_CLI_PATH)"; then \ NO_INTERACTION=1 \ TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \ TEST_PHP_SRCDIR=$(top_srcdir) \ CC="$(CC)" \ - $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php $(TESTS); \ + $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php $(TESTS); \ else \ echo "ERROR: Cannot run tests without CLI sapi."; \ fi |