diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-06-12 10:54:42 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-06-12 10:54:42 +0000 |
commit | 1af22afdec71295108f882c828e08f10d8a3e94b (patch) | |
tree | 375b9f89ec8e600c68e51374794d577e840ce961 | |
parent | 21888634686506a6938e435f9c4fd5a9f20ccc3e (diff) |
redirect stderrRELEASE-0_7_92BRANCH-RELEASE-0_8_2-ROOTBRANCH-RELEASE-0_8_2
Original commit message from CVS:
redirect stderr
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | m4/gst-feature.m4 | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org> + * m4/gst-feature.m4: + not all of them support --plugin-libs, so redirect stderr + +2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org> + * m4/as-scrub-include.m4: sync with upstream to 0.1.4. Fixes #132440 diff --git a/m4/gst-feature.m4 b/m4/gst-feature.m4 index 6d3c230..4ec0417 100644 --- a/m4/gst-feature.m4 +++ b/m4/gst-feature.m4 @@ -133,7 +133,7 @@ AC_DEFUN([GST_CHECK_CONFIGPROG], [$1]_CFLAGS= HAVE_[$1]=no else - [$1]_LIBS=`[$2] --plugin-libs [$3]` + [$1]_LIBS=`[$2] --plugin-libs [$3] 2> /dev/null` if test "x$[$1]_LIBS" = x; then [$1]_LIBS=`[$2] --libs [$3]` fi |