diff options
author | Andreas Schwab <schwab@suse.de> | 2007-06-21 08:55:36 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-06-21 08:55:36 +0000 |
commit | 14c5a68981278f642e4ca5fd5ca08554fc78b348 (patch) | |
tree | 34507c77f30ee8bbb6ddeec1c47be38faa1e74db | |
parent | 6cb0000a5a30d4fc580a06489106a637fca024c4 (diff) |
m4/gst-feature.m4: Fix quoting (#449493).
Original commit message from CVS:
Patch by: Andreas Schwab
* m4/gst-feature.m4:
Fix quoting (#449493).
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | m4/gst-feature.m4 | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2007-06-21 Tim-Philipp Müller <tim at centricular dot net> + + Patch by: Andreas Schwab + + * m4/gst-feature.m4: + Fix quoting (#449493). + 2007-06-10 Sebastian Dröge <slomo@circular-chaos.org> * m4/gst-parser.m4: diff --git a/m4/gst-feature.m4 b/m4/gst-feature.m4 index 9d7b437..e0fb6b6 100644 --- a/m4/gst-feature.m4 +++ b/m4/gst-feature.m4 @@ -46,13 +46,13 @@ dnl that were checked through AG_GST_CHECK_FEATURE dnl GST_PLUGINS_NO will contain those that won't be built AC_DEFUN([AG_GST_CHECK_FEATURE], -echo +[echo AC_MSG_NOTICE(*** checking feature: [$2] ***) if test "x[$3]" != "x" then AC_MSG_NOTICE(*** for plug-ins: [$3] ***) fi -[dnl +dnl builtin(define, [gst_endisable], ifelse($5, [disabled], [enable], [disable]))dnl dnl if it is set to NO, then don't even consider it for building NOUSE= |