Heikki Korpela fixed the 'make -C' invokes. make -C is banned.
authorDaniel Stenberg <daniel@haxx.se>
Sat, 1 Sep 2001 09:39:40 +0000 (09:39 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 1 Sep 2001 09:39:40 +0000 (09:39 +0000)
tests/Makefile.am

index 46f43b6..1b9072c 100644 (file)
@@ -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: