Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f707b53

Browse files
committed
fix escaping of brackets for m4 broken in b6b2149
1 parent f802c6d commit f707b53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/python.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if a == b:
4545
else:
4646
print(a + ' ' + b)"`
4747
if test "$PORTNAME" = win32 ; then
48-
python_includespec=`echo $python_includespec | sed 's,[\],/,g'`
48+
python_includespec=`echo $python_includespec | sed 's,[[\]],/,g'`
4949
fi
5050
AC_MSG_RESULT([$python_includespec])
5151

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7488,7 +7488,7 @@ if a == b:
74887488
else:
74897489
print(a + ' ' + b)"`
74907490
if test "$PORTNAME" = win32 ; then
7491-
python_includespec=`echo $python_includespec | sed 's,\,/,g'`
7491+
python_includespec=`echo $python_includespec | sed 's,[\],/,g'`
74927492
fi
74937493
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $python_includespec" >&5
74947494
$as_echo "$python_includespec" >&6; }

0 commit comments

Comments
 (0)