From 78472897cdf1432fd3ceb9814ebee6b8376fd6e7 Mon Sep 17 00:00:00 2001 From: Stefan Knoblich Date: Sat, 19 Feb 2011 23:38:04 +0100 Subject: [PATCH] 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 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}" ;;