fix escaping of brackets for m4 broken in b6b2149e48

This commit is contained in:
Andrew Dunstan 2015-05-03 09:37:15 -04:00
parent f802c6ddba
commit f707b53449
2 changed files with 2 additions and 2 deletions

View File

@ -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])

2
configure vendored
View File

@ -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; }