From: Stefan Knoblich Date: Sat, 19 Feb 2011 22:38:04 +0000 (+0100) Subject: Do not escape ${libdir} in --with-pkgconfigdir option's AS_HELP_STRING X-Git-Tag: v1.2-rc1~181^2~111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78472897cdf1432fd3ceb9814ebee6b8376fd6e7;p=thirdparty%2Ffreeswitch.git Do not escape ${libdir} in --with-pkgconfigdir option's AS_HELP_STRING description parameter (not needed and ends up in output). Signed-off-by: Stefan Knoblich --- diff --git a/configure.in b/configure.in index 0e45e064f1..7978d04754 100644 --- a/configure.in +++ b/configure.in @@ -94,7 +94,7 @@ AC_SUBST(bindir) AC_SUBST(includedir) AC_ARG_WITH([pkgconfigdir], - [AS_HELP_STRING([--with-pkgconfigdir=DIR], [Installation directory for pkgconfig file (default: \${libdir}/pkgconfig)])], + [AS_HELP_STRING([--with-pkgconfigdir=DIR], [Installation directory for pkgconfig file (default: ${libdir}/pkgconfig)])], [case "${withval}" in yes|no) AC_MSG_ERROR([Invalid value ${withval} for option --with-pkgconfigdir]) ;; *) pkgconfigdir="${withval}" ;;