diff options
author | David I. Lehn <dlehn@users.sourceforge.net> | 2002-11-02 05:39:20 +0000 |
---|---|---|
committer | David I. Lehn <dlehn@users.sourceforge.net> | 2002-11-02 05:39:20 +0000 |
commit | 797feff03ecdb586159688c67ea44ead4b8757ef (patch) | |
tree | e7ddc76e93de435731433cdd8628cb0e971f5f0b | |
parent | ea9932349c0010634d47c2c38492b19e96046173 (diff) | |
download | gstreamer-plugins-good-797feff03ecdb586159688c67ea44ead4b8757ef.tar.gz |
use AM_CFLAGS instead of CFLAGS
Original commit message from CVS:
use AM_CFLAGS instead of CFLAGS
-rw-r--r-- | examples/dynparams/Makefile.am | 2 | ||||
-rw-r--r-- | examples/seeking/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/dynparams/Makefile.am b/examples/dynparams/Makefile.am index de0a1d9e9..ed7d7f12a 100644 --- a/examples/dynparams/Makefile.am +++ b/examples/dynparams/Makefile.am @@ -4,4 +4,4 @@ noinst_PROGRAMS = $(examples) # we have nothing but apps here, we can do this safely LIBS = $(GST_LIBS) $(GTK_LIBS) -lgstcontrol -CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) +AM_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) diff --git a/examples/seeking/Makefile.am b/examples/seeking/Makefile.am index bb427f7bd..3dd4f2027 100644 --- a/examples/seeking/Makefile.am +++ b/examples/seeking/Makefile.am @@ -4,4 +4,4 @@ noinst_PROGRAMS = $(examples) # we have nothing but apps here, we can do this safely LIBS = $(GST_LIBS) $(GTK_LIBS) $(FT2_LIBS) -CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) $(FT2_CFLAGS) +AM_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) $(FT2_CFLAGS) |