diff options
author | Stig Bakken <ssb@php.net> | 2001-04-16 23:28:58 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2001-04-16 23:28:58 +0000 |
commit | 0edbf4242f12404e5a20e298b8501e06c3210894 (patch) | |
tree | dd4175a8625b3bbd98a81ddc1eaa3f6c09d9a72e /build/rules.mk | |
parent | 0b2641efa6a87d765b936ca5deebc12b554a9652 (diff) | |
download | php-git-0edbf4242f12404e5a20e298b8501e06c3210894.tar.gz |
* using CGI -C option, you no longer have to specify "full" path to tests
Diffstat (limited to 'build/rules.mk')
-rw-r--r-- | build/rules.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/rules.mk b/build/rules.mk index 3a09d411b1..63fab34b21 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -55,9 +55,9 @@ distclean: distclean-recursive clean-x test: $(top_builddir)/php @if test "$(TESTS)" = ""; then \ - TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) $(top_builddir)/php -d "include_path=.:$(top_srcdir)/pear:$(top_builddir)/pear:$(PEAR_INSTALLDIR)" -q $(top_srcdir)/run-tests.php $(srcdir); \ + TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) $(top_builddir)/php -C -q $(top_srcdir)/run-tests.php $(srcdir); \ else \ - TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) $(top_builddir)/php -d include_path=".:$(top_srcdir)/pear:$(top_builddir)/pear:$(PEAR_INSTALLDIR)" -q $(top_srcdir)/run-tests.php $(TESTS); \ + TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) $(top_builddir)/php -C -q $(top_srcdir)/run-tests.php $(TESTS); \ fi include $(builddir)/.deps |