diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-03-02 09:29:45 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-03-02 09:29:45 +0000 |
commit | 7ff5e156c2d80ca385511b2f0dff283f631a3577 (patch) | |
tree | c3f15881ff4fda7c23de4dfc2243ee1e215f0c2a /build | |
parent | 15ba6402bdc15f86d7614dd973c82bb387d35473 (diff) | |
download | php-git-7ff5e156c2d80ca385511b2f0dff283f631a3577.tar.gz |
Use php.ini-dist as default config file for testing.
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 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 |