fix escaping of brackets for m4 broken in b6b2149e48

pull/14/head
Andrew Dunstan 11 years ago
parent f802c6ddba
commit f707b53449
  1. 2
      config/python.m4
  2. 2
      configure

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

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

Loading…
Cancel
Save