summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-03-02 09:29:45 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-03-02 09:29:45 +0000
commit7ff5e156c2d80ca385511b2f0dff283f631a3577 (patch)
treec3f15881ff4fda7c23de4dfc2243ee1e215f0c2a /build
parent15ba6402bdc15f86d7614dd973c82bb387d35473 (diff)
downloadphp-git-7ff5e156c2d80ca385511b2f0dff283f631a3577.tar.gz
Use php.ini-dist as default config file for testing.
Diffstat (limited to 'build')
-rw-r--r--build/rules.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/rules.mk b/build/rules.mk
index 8790b45c76..96448914b0 100644
--- a/build/rules.mk
+++ b/build/rules.mk
@@ -55,9 +55,9 @@ distclean: distclean-recursive clean-x
test: $(top_builddir)/sapi/cli/php
@if test "$(TESTS)" = ""; then \
- TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) $(top_builddir)/sapi/cli/php $(top_srcdir)/run-tests.php $(srcdir); \
+ TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) $(top_builddir)/sapi/cli/php -c $(top_srcdir)/php.ini-dist $(top_srcdir)/run-tests.php $(srcdir); \
else \
- TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) $(top_builddir)/sapi/cli/php $(top_srcdir)/run-tests.php $(TESTS); \
+ TOP_BUILDDIR=$(top_builddir) TOP_SRCDIR=$(top_srcdir) $(top_builddir)/sapi/cli/php -c $(top_srcdir)/php.ini-dist $(top_srcdir)/run-tests.php $(TESTS); \
fi
include $(builddir)/.deps