diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-09-01 09:39:40 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-09-01 09:39:40 +0000 |
commit | 6ef11f0b130a8437a37654a1e8631fc5d2ba9867 (patch) | |
tree | fdefb859defb6f3b6353719c52647f4a6c3d24b7 | |
parent | a5705acc9cdbab22e0ae1740f043611e4ad019fc (diff) |
Heikki Korpela fixed the 'make -C' invokes. make -C is banned.
-rw-r--r-- | tests/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 46f43b60a..1b9072cb3 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -12,11 +12,11 @@ curl: @(cd ..; make) test: - $(MAKE) -C data test + @cd data && exec $(MAKE) test srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl quiet-test: - $(MAKE) -C data test + @cd data && exec $(MAKE) test srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -s -a clean: |