diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-07-02 10:02:13 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-07-02 10:02:13 +0000 |
commit | 0e71d88f2f28fc3646d8944cbf3b1b683513e15b (patch) | |
tree | 18d27d67132dd1750a6cfca601c785d041cf5343 /Makefile.am | |
parent | 248ccb0469ddad12807af77ea5dd592cc7080207 (diff) | |
download | gstreamer-plugins-base-0e71d88f2f28fc3646d8944cbf3b1b683513e15b.tar.gz |
clean up install/dist problem
Original commit message from CVS:
clean up install/dist problem
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index d773bc68a..e20dd34a4 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 |