summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2015-05-03 08:17:04 -0400
committerAndrew Dunstan <andrew@dunslane.net>2015-05-03 08:17:04 -0400
commitb6b2149e48aa61981ae0199c963d5145a37c258c (patch)
tree5b5b2a3bcfe9b55b8f0e260ddcda380fa031fc2d /configure
parent1a629c1b161a2b43a2f81241a8f4c5f79e5b8ecf (diff)
downloadpostgresql-b6b2149e48aa61981ae0199c963d5145a37c258c.tar.gz
Fix python_includespec on Windows at configure time
By converting to using forward slashes at configure time we avoid having to repeat the logic anywhere that this is needed, such as in transforms modules for plpython.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 6691d7382c..191e8f0326 100755
--- a/configure
+++ b/configure
@@ -7487,6 +7487,9 @@ if a == b:
print(a)
else:
print(a + ' ' + b)"`
+if test "$PORTNAME" = win32 ; then
+ 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; }