mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
clean up install/dist problem
Original commit message from CVS: clean up install/dist problem
This commit is contained in:
parent
e2983a7a32
commit
44d1d555df
2 changed files with 16 additions and 2 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* Makefile.am:
|
||||
* gst-libs/gst/colorbalance/Makefile.am:
|
||||
* gst-libs/gst/mixer/Makefile.am:
|
||||
* gst-libs/gst/play/Makefile.am:
|
||||
* gst-libs/gst/tuner/Makefile.am:
|
||||
(hopefully) fix both install and dist and make error message useful.
|
||||
needs testing across automakes.
|
||||
|
||||
2004-07-02 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* ext/ogg/gstogg.c: (plugin_init):
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue