mirror of https://github.com/python/cpython
Fix bad quoting in r87639. Caught by Arfrever.
This commit is contained in:
parent
b6f424043d
commit
ece919eb0f
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision: 87577 .
|
||||
# From configure.in Revision: 87639 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.65 for python 3.2.
|
||||
#
|
||||
|
@ -7535,8 +7535,8 @@ then
|
|||
esac
|
||||
fi;;
|
||||
NetBSD*|DragonFly*)
|
||||
LDSHARED="$(CC) -shared"
|
||||
LDCXXSHARED="$(CXX) -shared";;
|
||||
LDSHARED='$(CC) -shared'
|
||||
LDCXXSHARED='$(CXX) -shared';;
|
||||
OpenUNIX*|UnixWare*)
|
||||
if test "$GCC" = "yes" ; then
|
||||
LDSHARED='$(CC) -shared'
|
||||
|
|
|
@ -1750,8 +1750,8 @@ then
|
|||
esac
|
||||
fi;;
|
||||
NetBSD*|DragonFly*)
|
||||
LDSHARED="$(CC) -shared"
|
||||
LDCXXSHARED="$(CXX) -shared";;
|
||||
LDSHARED='$(CC) -shared'
|
||||
LDCXXSHARED='$(CXX) -shared';;
|
||||
OpenUNIX*|UnixWare*)
|
||||
if test "$GCC" = "yes" ; then
|
||||
LDSHARED='$(CC) -shared'
|
||||
|
|
Loading…
Reference in New Issue