mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Merged revisions 87646 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87646 | antoine.pitrou | 2011-01-02 21:45:21 +0100 (dim., 02 janv. 2011) | 3 lines Fix bad quoting in r87639. Caught by Arfrever. ........
This commit is contained in:
parent
f1cc81a97d
commit
59dd7abc56
2 changed files with 3 additions and 3 deletions
4
configure
vendored
4
configure
vendored
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision: 86752 .
|
||||
# From configure.in Revision: 87641 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.65 for python 3.1.
|
||||
#
|
||||
|
@ -7563,7 +7563,7 @@ then
|
|||
;;
|
||||
esac
|
||||
fi;;
|
||||
NetBSD*|DragonFly*) LDSHARED="$(CC) -shared ${LDFLAGS}";;
|
||||
NetBSD*|DragonFly*) LDSHARED='$(CC) -shared ${LDFLAGS}';;
|
||||
OpenUNIX*|UnixWare*)
|
||||
if test "$GCC" = "yes"
|
||||
then LDSHARED='$(CC) -shared'
|
||||
|
|
|
@ -1814,7 +1814,7 @@ then
|
|||
;;
|
||||
esac
|
||||
fi;;
|
||||
NetBSD*|DragonFly*) LDSHARED="$(CC) -shared ${LDFLAGS}";;
|
||||
NetBSD*|DragonFly*) LDSHARED='$(CC) -shared ${LDFLAGS}';;
|
||||
OpenUNIX*|UnixWare*)
|
||||
if test "$GCC" = "yes"
|
||||
then LDSHARED='$(CC) -shared'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue