From: Sascha Schumann Date: Sun, 24 Dec 2000 16:03:16 +0000 (+0000) Subject: Run run-tests.php in srcdir and add top_builddir/pear to the include X-Git-Tag: php-4.0.5RC1~796 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=971e3a6473fc8ba016d1bcc3f25e962904174067;p=php 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). --- 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