diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-28 21:49:45 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-28 21:49:45 +0000 |
commit | 7bb7550e23e70528f8c138d7e65275ac970a0351 (patch) | |
tree | 33b9529790820840843ed896f982177baae59a6f /tests/Makefile.am | |
parent | adf00f5b2e662241316fca8428c560a778974dbe (diff) | |
download | curl-7bb7550e23e70528f8c138d7e65275ac970a0351.tar.gz |
fixes
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index e59b70805..6888c1239 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -3,6 +3,8 @@ EXTRA_DIST = ftpserver.pl httpserver.pl runtests.pl ftpsserver.pl stunnel.pm \ SUBDIRS = data +PERLFLAGS = -I$(srcdir) + all: install: @@ -11,11 +13,11 @@ curl: test: $(MAKE) -C data test - srcdir=$(srcdir) $(PERL) $(srcdir)/runtests.pl + srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl quiet-test: $(MAKE) -C data test - srcdir=$(srcdir) $(PERL) $(srcdir)/runtests.pl -s -a + srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -s -a clean: rm -rf log |