summaryrefslogtreecommitdiff
path: root/config/python.m4
diff options
context:
space:
mode:
authorAndrew Dunstan2015-05-03 13:37:15 +0000
committerAndrew Dunstan2015-05-03 13:37:15 +0000
commitf707b53449f3ab6998c615b746ad01f5775723a3 (patch)
tree4b6df5920d4abbcc49829ccfc85c7439e399bb27 /config/python.m4
parentf802c6ddba143bd88512b5fc34e84ae0b4883284 (diff)
fix escaping of brackets for m4 broken in b6b2149e48aa61981ae0199c963d5145a37c258c
Diffstat (limited to 'config/python.m4')
-rw-r--r--config/python.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/config/python.m4 b/config/python.m4
index de346fb53aa..fc6afab9f93 100644
--- a/config/python.m4
+++ b/config/python.m4
@@ -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])