diff options
| author | Sascha Schumann <sas@php.net> | 2000-12-24 16:03:16 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-12-24 16:03:16 +0000 |
| commit | 971e3a6473fc8ba016d1bcc3f25e962904174067 (patch) | |
| tree | 739f9bc2e7cfba0b19f070483e88c828b0306a78 | |
| parent | 72f99e668e80da93e2253a2cb43b96b4e0c7ca02 (diff) | |
| download | php-git-971e3a6473fc8ba016d1bcc3f25e962904174067.tar.gz | |
Run run-tests.php in srcdir and add top_builddir/pear to the include
path (does not seem to work though yet. The include path does not
seem to get changed at all).
| -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 50e2b4df0e..3a09d411b1 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:$(PEAR_INSTALLDIR)" -q $(top_srcdir)/run-tests.php $(top_srcdir); \ + 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); \ else \ - TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) $(top_builddir)/php -d include_path=".:$(top_srcdir)/pear:$(PEAR_INSTALLDIR)" -q $(top_srcdir)/run-tests.php $(TESTS); \ + 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); \ fi include $(builddir)/.deps |
