mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
don't include -enumtypes.[ch] or -marshal.[ch] files in the disted tarball.
Original commit message from CVS: * gst-libs/gst/colorbalance/Makefile.am: * gst-libs/gst/mixer/Makefile.am: * gst-libs/gst/play/Makefile.am: * gst-libs/gst/tuner/Makefile.am: * gst/tcp/Makefile.am: * sys/dxr3/Makefile.am: don't include -enumtypes.[ch] or -marshal.[ch] files in the disted tarball. Also add all *.list files that were missing. * Makefile.am: add a distcheck hook to ensure the above doesn't happen again.
This commit is contained in:
parent
bfaca2b9b7
commit
4eb2d088af
2 changed files with 22 additions and 0 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
|||
2004-06-24 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* gst-libs/gst/colorbalance/Makefile.am:
|
||||
* gst-libs/gst/mixer/Makefile.am:
|
||||
* gst-libs/gst/play/Makefile.am:
|
||||
* gst-libs/gst/tuner/Makefile.am:
|
||||
* gst/tcp/Makefile.am:
|
||||
* sys/dxr3/Makefile.am:
|
||||
don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
|
||||
tarball.
|
||||
Also add all *.list files that were missing.
|
||||
* Makefile.am:
|
||||
add a distcheck hook to ensure the above doesn't happen again.
|
||||
|
||||
2004-06-23 David I. Lehn <dlehn@users.sourceforge.net>
|
||||
|
||||
* ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
|
||||
|
|
|
@ -44,5 +44,13 @@ EXTRA_DIST=gst-plugins.spec depcomp \
|
|||
|
||||
DISTCLEANFILES=_stdint.h
|
||||
|
||||
# check that no marshal or enumtypes files are included
|
||||
# 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 \*-marshal.[ch]`" || \
|
||||
( $(ECHO) "*** Still leftover enumtypes or marshal files in the tarball. Please make sure those are not disted." && false )
|
||||
|
||||
include $(top_srcdir)/common/release.mak
|
||||
include $(top_srcdir)/common/po.mak
|
||||
|
|
Loading…
Reference in a new issue