diff options
author | Andrew Dunstan | 2015-05-03 13:37:15 +0000 |
---|---|---|
committer | Andrew Dunstan | 2015-05-03 13:37:15 +0000 |
commit | f707b53449f3ab6998c615b746ad01f5775723a3 (patch) | |
tree | 4b6df5920d4abbcc49829ccfc85c7439e399bb27 /config/python.m4 | |
parent | f802c6ddba143bd88512b5fc34e84ae0b4883284 (diff) |
fix escaping of brackets for m4 broken in b6b2149e48aa61981ae0199c963d5145a37c258c
Diffstat (limited to 'config/python.m4')
-rw-r--r-- | config/python.m4 | 2 |
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]) |