summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-07-01 18:41:47 +0300
committerTor Lillqvist <tlillqvist@novell.com>2011-07-01 18:44:23 +0300
commit85d6112d7ba3570fa413672a34145d558da6df41 (patch)
treea1cca7155698ba22b5f96c0c1f9992131da1ac69
parent1e8097d33aac2f9dbd964252ee0cc839fdf57674 (diff)
Work around m4 bracket stripping in MINGWSTRIP construction
Signed-off-by: Rene Engelhard <rene@debian.org> (on IRC).
-rwxr-xr-xconfigure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index de3cab04f..f12dcdf4e 100755
--- a/configure.in
+++ b/configure.in
@@ -3866,7 +3866,7 @@ if test "z$enable_odk" = "z" -o "$enable_odk" != "no"; then
if echo "$WITH_MINGW" | $EGREP -q "/"; then
if ! test -x "`echo $WITH_MINGW | $SED -e s/[cg]++/strip/`"; then MINGWSTRIP=false; else MINGWSTRIP=$(basename $(echo $WITH_MINGW | $SED -e s/[cg]++/strip/)); fi
else
- AC_CHECK_TOOL(MINGWSTRIP, `echo $WITH_MINGW | $SED -e s/[cg]++/strip/`, false)
+ AC_CHECK_TOOL(MINGWSTRIP, `echo $WITH_MINGW | $SED -e s/[[[cg]]]++/strip/`, false)
fi
if test "$MINGWSTRIP" = "false"; then
AC_MSG_ERROR(MinGW32 binutils needed. Install them.)