mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
really fix dist
Original commit message from CVS: really fix dist
This commit is contained in:
parent
5701e846db
commit
20372318d9
2 changed files with 39 additions and 30 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* Makefile.am:
|
||||||
|
really fix dist
|
||||||
|
|
||||||
2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
64
Makefile.am
64
Makefile.am
|
@ -5,51 +5,55 @@ SUBDIRS_DOCS =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if USE_GCONFTOOL
|
if USE_GCONFTOOL
|
||||||
GCONF_DIR=gconf
|
GCONF_DIR = gconf
|
||||||
else
|
else
|
||||||
GCONF_DIR=
|
GCONF_DIR =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if BUILD_EXTERNAL
|
if BUILD_EXTERNAL
|
||||||
EXT_DIR=ext
|
EXT_DIR = ext
|
||||||
else
|
else
|
||||||
EXT_DIR=
|
EXT_DIR =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if BUILD_EXAMPLES
|
if BUILD_EXAMPLES
|
||||||
EXAMPLES_DIR=examples
|
EXAMPLES_DIR = examples
|
||||||
else
|
else
|
||||||
EXAMPLES_DIR=
|
EXAMPLES_DIR =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
SUBDIRS=gst-libs \
|
SUBDIRS = \
|
||||||
gst sys $(EXT_DIR) \
|
gst-libs \
|
||||||
$(EXAMPLES_DIR) \
|
gst sys $(EXT_DIR) \
|
||||||
tools \
|
$(EXAMPLES_DIR) \
|
||||||
$(GCONF_DIR) \
|
tools \
|
||||||
testsuite \
|
$(GCONF_DIR) \
|
||||||
po \
|
testsuite \
|
||||||
common \
|
po \
|
||||||
m4 \
|
common \
|
||||||
pkgconfig \
|
m4 \
|
||||||
|
pkgconfig \
|
||||||
$(SUBDIRS_DOCS)
|
$(SUBDIRS_DOCS)
|
||||||
|
|
||||||
DIST_SUBDIRS=ext gst-libs \
|
DIST_SUBDIRS = \
|
||||||
gst sys \
|
gst-libs \
|
||||||
examples \
|
gst sys ext \
|
||||||
tools \
|
examples \
|
||||||
gconf \
|
tools \
|
||||||
testsuite \
|
gconf \
|
||||||
po \
|
testsuite \
|
||||||
common \
|
po \
|
||||||
m4 \
|
common \
|
||||||
pkgconfig
|
m4 \
|
||||||
|
pkgconfig \
|
||||||
|
docs
|
||||||
|
|
||||||
EXTRA_DIST=gst-plugins.spec depcomp \
|
EXTRA_DIST = \
|
||||||
AUTHORS COPYING COPYING.LIB NEWS README RELEASE REQUIREMENTS \
|
gst-plugins.spec depcomp \
|
||||||
ChangeLog autogen.sh
|
AUTHORS COPYING COPYING.LIB NEWS README RELEASE REQUIREMENTS \
|
||||||
|
ChangeLog autogen.sh
|
||||||
|
|
||||||
DISTCLEANFILES=_stdint.h
|
DISTCLEANFILES = _stdint.h
|
||||||
|
|
||||||
# check that no marshal or enumtypes files are included
|
# check that no marshal or enumtypes files are included
|
||||||
# this in turn ensures that distcheck fails for missing .list files which is currently
|
# this in turn ensures that distcheck fails for missing .list files which is currently
|
||||||
|
|
Loading…
Reference in a new issue