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 | 3ea45208c4657d74bb695cae8a99078a5f043ae9 (patch) | |
tree | b2f24ce624face95cfe103ab307b80ad2f2c6d88 /Makefile.am | |
parent | ddccf5b84571dba96852b808a46df9678e3ec042 (diff) | |
download | gst-plugins-bad-3ea45208c4657d74bb695cae8a99078a5f043ae9.tar.gz gst-plugins-bad-3ea45208c4657d74bb695cae8a99078a5f043ae9.tar.bz2 gst-plugins-bad-3ea45208c4657d74bb695cae8a99078a5f043ae9.zip |
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 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 |