tests/check/Makefile.am: Include local stuff before system installed things in LDFLAGS and

Original commit message from CVS:
* tests/check/Makefile.am:
Include local stuff before system installed things in LDFLAGS and
CFLAGS.
This commit is contained in:
Jan Schmidt 2007-02-28 15:11:59 +00:00
parent ce47c4d2d8
commit 91e7d53d42
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2007-02-28 Jan Schmidt <thaytan@mad.scientist.com>
* tests/check/Makefile.am:
Include local stuff before system installed things in LDFLAGS and
CFLAGS.
2007-02-28 Wim Taymans <wim@fluendo.com>
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):

View file

@ -196,13 +196,14 @@ elements_volume_CFLAGS = \
$(AM_CFLAGS)
elements_vorbistag_LDADD = \
$(VORBIS_LIBS) \
$(LDADD)
$(LDADD) \
$(VORBIS_LIBS)
elements_vorbistag_CFLAGS = \
$(GST_PLUGINS_BASE_CFLAGS) \
$(AM_CFLAGS) \
$(VORBIS_CFLAGS) \
$(CFLAGS) $(AM_CFLAGS)
$(CFLAGS)
gst_typefindfunctions_CFLAGS = $(GST_BASE_CFLAGS) $(AM_CFLAGS)
gst_typefindfunctions_LDADD = $(GST_BASE_LIBS) $(LDADD)