summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2007-07-19 14:43:25 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2007-07-19 14:43:25 +0000
commit61b0ee21107fcb7b33af827d4ccb59430dbc11b2 (patch)
treee0c985b620873389cc56af8ab34d22cf9347e62f
parent77a9a988292b448b0202b781426604067f8294bd (diff)
configure.ac: Fix CVS-build detection.
Original commit message from CVS: * configure.ac: Fix CVS-build detection.
m---------common0
-rw-r--r--gst-plugin/ChangeLog5
-rw-r--r--gst-plugin/configure.ac2
3 files changed, 6 insertions, 1 deletions
diff --git a/common b/common
-Subproject 8ba5dffb5ee7e7daea1030f6b34bfef10f9801a
+Subproject b3fe2a25c1cd0f4b021795d0db7330aeb338da7
diff --git a/gst-plugin/ChangeLog b/gst-plugin/ChangeLog
index c85a2a5..a7c1c84 100644
--- a/gst-plugin/ChangeLog
+++ b/gst-plugin/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-19 Stefan Kost <ensonic@users.sf.net>
+
+ * configure.ac:
+ Fix CVS-build detection.
+
2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
* src/Makefile.am:
diff --git a/gst-plugin/configure.ac b/gst-plugin/configure.ac
index f77a695..c5c6885 100644
--- a/gst-plugin/configure.ac
+++ b/gst-plugin/configure.ac
@@ -35,7 +35,7 @@ AS_COMPILER_FLAG(-Wall, GST_WALL="yes", GST_WALL="no")
if test "x$GST_WALL" = "xyes"; then
GST_ERROR="$GST_ERROR -Wall"
- if test "x$GST_CVS" = "xyes"; then
+ if test "x$GST_PLUGIN_CVS" = "xyes"; then
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
fi
fi