mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
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.
This commit is contained in:
3
configure
vendored
3
configure
vendored
@ -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; }
|
||||
|
||||
|
Reference in New Issue
Block a user