From 44d1d555df299b7b6901c7b67b0dead5523816fa Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Fri, 2 Jul 2004 10:02:13 +0000 Subject: clean up install/dist problem Original commit message from CVS: clean up install/dist problem --- Makefile.am | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index d773bc68..e20dd34a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -48,9 +48,13 @@ DISTCLEANFILES=_stdint.h # this in turn ensures that distcheck fails for missing .list files which is currently # shadowed when the corresponding .c and .h files are included. distcheck-hook: - test "x" = "x`find $(distdir) -name \*-enumtypes.[ch]`" && \ + @test "x" = "x`find $(distdir) -name \*-enumtypes.[ch]`" && \ test "x" = "x`find $(distdir) -name \*-marshal.[ch]`" || \ - ( $(ECHO) "*** Still leftover enumtypes or marshal files in the tarball. Please make sure those are not disted." && false ) + ( $(ECHO) "*** Leftover enumtypes or marshal files in the tarball." && \ + $(ECHO) "*** Make sure the following files are not disted:" && \ + find $(distdir) -name \*-enumtypes.[ch] && \ + find $(distdir) -name \*-marshal.[ch] && \ + false ) include $(top_srcdir)/common/release.mak include $(top_srcdir)/common/po.mak -- cgit