diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-03-29 14:56:50 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-03-29 14:56:50 +0100 |
commit | 795080b868d41b4a970ba195cb1b1a1ce6089024 (patch) | |
tree | 3f7fa216c18b3c6f0ef881a42a5616091941ae9a | |
parent | 1e26328be7611a7acdd5f9ecbcac32cba5cfab57 (diff) | |
download | xine-lib-795080b868d41b4a970ba195cb1b1a1ce6089024.tar.gz xine-lib-795080b868d41b4a970ba195cb1b1a1ce6089024.tar.bz2 |
Missed s/-/_/ in XINE_ARG_ENABLE & XINE_ARG_WITH.
-rw-r--r-- | m4/xine.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/xine.m4 b/m4/xine.m4 index ec5739e0a..db530e250 100644 --- a/m4/xine.m4 +++ b/m4/xine.m4 @@ -129,7 +129,7 @@ AC_DEFUN([XINE_ARG_WITH], [ AC_MSG_ERROR([default_with_[]m4_translit([[$1]], [-], [_]) is not set]) fi AC_ARG_WITH([$1], [AS_HELP_STRING([--with-$1], [$2])], - [test x"$withval" != xno && with_[]m4_translit([[$1]], [-], [_])=yes || with_[]m4_translit([[$1]], [-], [_])=no; hard_with_$1="$with_[]m4_translit([[$1]], [-], [_])"], + [test x"$withval" != xno && with_[]m4_translit([[$1]], [-], [_])=yes || with_[]m4_translit([[$1]], [-], [_])=no; hard_with_[]m4_translit([[$1]], [-], [_])="$with_[]m4_translit([[$1]], [-], [_])"], [with_[]m4_translit([[$1]], [-], [_])="$default_with_[]m4_translit([[$1]], [-], [_])"; hard_with_[]m4_translit([[$1]], [-], [_])=''])]) dnl XINE_ARG_ENABLE(VARIABLE, HELP-TEXT) @@ -139,5 +139,5 @@ AC_DEFUN([XINE_ARG_ENABLE], [ AC_MSG_ERROR([default_enable_[]m4_translit([[$1]], [-], [_]) is not set]) fi AC_ARG_ENABLE([$1], [AS_HELP_STRING([--enable-$1], [$2])], - [test x"$enableval" != xno && enable_[]m4_translit([[$1]], [-], [_])=yes || enable_[]m4_translit([[$1]], [-], [_])=no; hard_enable_$1="$enable_[]m4_translit([[$1]], [-], [_])"], + [test x"$enableval" != xno && enable_[]m4_translit([[$1]], [-], [_])=yes || enable_[]m4_translit([[$1]], [-], [_])=no; hard_enable_[]m4_translit([[$1]], [-], [_])="$enable_[]m4_translit([[$1]], [-], [_])"], [enable_[]m4_translit([[$1]], [-], [_])="$default_enable_[]m4_translit([[$1]], [-], [_])"; hard_enable_[]m4_translit([[$1]], [-], [_])=''])]) |