From 63f64e4aafefecd474a866236db2f4b1e5accbf3 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 21 Sep 2005 19:26:12 +0000 Subject: [PATCH] * tests/Makefile.am (clean-local): Don't attempt to run $(TESTSUITE) if it doesn't exist. Problem reported by Eric Blake. --- ChangeLog | 6 ++++++ tests/Makefile.am | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b35e183..c487974 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-09-21 Paul Eggert + + * 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 Don't filter time stamps through the resolution supported diff --git a/tests/Makefile.am b/tests/Makefile.am index db1d42f..b9f1c02 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -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) - -- 2.44.0