diff options
author | Stig Bakken <ssb@php.net> | 2000-12-13 14:01:39 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2000-12-13 14:01:39 +0000 |
commit | 672a300022e426a03ccfb7c44ead392705aeb521 (patch) | |
tree | 2b329707c6d5c7d26d1108817b2b8ab50b475774 /build | |
parent | 276cb7cdb198e92bb995e3b5c204fa24c536e5c9 (diff) | |
download | php-git-672a300022e426a03ccfb7c44ead392705aeb521.tar.gz |
* PEAR: don't require "make install" before "make test"
Diffstat (limited to 'build')
-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 1b46df9b02..e0d77a5968 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)/php -q $(top_srcdir)/run-tests.php `pwd`; \ + $(top_builddir)/php -d include_path=".:$(top_srcdir)/pear:$(PEAR_INSTALLDIR)" -q $(top_srcdir)/run-tests.php `pwd`; \ else \ - $(top_builddir)/php -q $(top_srcdir)/run-tests.php $(TESTS); \ + $(top_builddir)/php -d include_path=".:$(top_srcdir)/pear:$(PEAR_INSTALLDIR)" -q $(top_srcdir)/run-tests.php $(TESTS); \ fi include $(builddir)/.deps |