]> Dogcows Code - chaz/tar/commitdiff
* tests/Makefile.am (clean-local): Don't attempt to run
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 21 Sep 2005 19:26:12 +0000 (19:26 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 21 Sep 2005 19:26:12 +0000 (19:26 +0000)
$(TESTSUITE) if it doesn't exist.  Problem reported by
Eric Blake.

ChangeLog
tests/Makefile.am

index b35e183b98446e02faa26900e0bea8e82003c8ae..c48797456e68c1fff14c2fa976d195ec9682c75e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-09-21  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * tests/Makefile.am (clean-local): Don't attempt to run
+       $(TESTSUITE) if it doesn't exist.  Problem reported by
+       Eric Blake.
+
 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
 
        Don't filter time stamps through the resolution supported
index db1d42fe0f28a968539496c5c5b48a318936a271..b9f1c027f439d511e398f127c494e78af5efa2c6 100644 (file)
@@ -106,7 +106,7 @@ atconfig: $(top_builddir)/config.status
        cd $(top_builddir) && ./config.status tests/$@
 
 clean-local:
-       $(SHELL) $(TESTSUITE) --clean
+       test ! -f $(TESTSUITE) || $(SHELL) $(TESTSUITE) --clean
 
 check-local: atconfig atlocal $(TESTSUITE)
        $(SHELL) $(TESTSUITE)
@@ -130,4 +130,3 @@ localedir = $(datadir)/locale
 INCLUDES = -I$(top_srcdir)/lib -I../lib -I$(top_srcdir)/src
 
 LDADD = ../lib/libtar.a $(LIBINTL) $(LIB_CLOCK_GETTIME)
-
This page took 0.032034 seconds and 4 git commands to generate.