Commit f707b534 authored by Andrew Dunstan's avatar Andrew Dunstan

fix escaping of brackets for m4 broken in b6b2149e

parent f802c6dd
......@@ -45,7 +45,7 @@ if a == b:
else:
print(a + ' ' + b)"`
if test "$PORTNAME" = win32 ; then
python_includespec=`echo $python_includespec | sed 's,[\],/,g'`
python_includespec=`echo $python_includespec | sed 's,[[\]],/,g'`
fi
AC_MSG_RESULT([$python_includespec])
......
......@@ -7488,7 +7488,7 @@ if a == b:
else:
print(a + ' ' + b)"`
if test "$PORTNAME" = win32 ; then
python_includespec=`echo $python_includespec | sed 's,\,/,g'`
python_includespec=`echo $python_includespec | sed 's,[\],/,g'`
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $python_includespec" >&5
$as_echo "$python_includespec" >&6; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment