mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
fix make distcheck mv examples/gstreamer examples/gst
Original commit message from CVS: fix make distcheck mv examples/gstreamer examples/gst
This commit is contained in:
parent
57755079fb
commit
e84077e4b2
5 changed files with 17 additions and 4 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
* examples/Makefile.am:
|
||||||
|
* gst/Makefile.am:
|
||||||
|
* gstinterfaces/Makefile.am:
|
||||||
|
* gstplay/Makefile.am:
|
||||||
|
* testsuite/Makefile.am:
|
||||||
|
fix make distcheck
|
||||||
|
move examples/gstreamer to examples/gst
|
||||||
|
|
||||||
2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* Makefile.am:
|
* Makefile.am:
|
||||||
|
|
|
@ -151,7 +151,7 @@ AC_OUTPUT([
|
||||||
pkgconfig/gst-python.pc
|
pkgconfig/gst-python.pc
|
||||||
pkgconfig/gst-python-uninstalled.pc
|
pkgconfig/gst-python-uninstalled.pc
|
||||||
examples/Makefile
|
examples/Makefile
|
||||||
examples/gstreamer/Makefile
|
examples/gst/Makefile
|
||||||
docs/Makefile
|
docs/Makefile
|
||||||
docs/gst-python.ent
|
docs/gst-python.ent
|
||||||
testsuite/Makefile
|
testsuite/Makefile
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
SUBDIRS = gstreamer
|
SUBDIRS = gst
|
||||||
|
|
|
@ -24,14 +24,14 @@ _gstmodule_la_LDFLAGS = -module -avoid-version -export-symbols-regex init_gst
|
||||||
nodist__gstmodule_la_SOURCES = gst.c
|
nodist__gstmodule_la_SOURCES = gst.c
|
||||||
|
|
||||||
CLEANFILES = gst.c
|
CLEANFILES = gst.c
|
||||||
EXTRA_DIST = gst.defs $(GST_OVERRIDES) arg-types.py
|
EXTRA_DIST = gst.defs gst-types.defs $(GST_OVERRIDES) arg-types.py
|
||||||
|
|
||||||
gst.c: $(srcdir)/gst.defs $(srcdir)/arg-types.py $(GST_OVERRIDES)
|
gst.c: $(srcdir)/gst.defs $(srcdir)/arg-types.py $(GST_OVERRIDES)
|
||||||
$(PYGTK_CODEGEN) \
|
$(PYGTK_CODEGEN) \
|
||||||
--load-types $(srcdir)/arg-types.py \
|
--load-types $(srcdir)/arg-types.py \
|
||||||
--register $(srcdir)/gst-types.defs \
|
--register $(srcdir)/gst-types.defs \
|
||||||
--override $(srcdir)/gst.override \
|
--override $(srcdir)/gst.override \
|
||||||
--prefix pygst gst.defs > gen-gst.c \
|
--prefix pygst $(srcdir)/gst.defs > gen-gst.c \
|
||||||
&& rm -fr gtreamer.c \
|
&& rm -fr gtreamer.c \
|
||||||
&& echo '/* GENERATED FILE - DO NOT EDIT */' >> gst.c \
|
&& echo '/* GENERATED FILE - DO NOT EDIT */' >> gst.c \
|
||||||
&& cat gen-gst.c >> gst.c \
|
&& cat gen-gst.c >> gst.c \
|
||||||
|
|
|
@ -3,3 +3,5 @@ testprogs = element.py
|
||||||
TESTS = $(testprogs)
|
TESTS = $(testprogs)
|
||||||
|
|
||||||
check_SCRIPTS = $(testprogs)
|
check_SCRIPTS = $(testprogs)
|
||||||
|
|
||||||
|
EXTRA_DIST = $(testprogs)
|
||||||
|
|
Loading…
Reference in a new issue