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:
Antoine Pitrou 2011-01-02 20:49:42 +00:00
parent f1cc81a97d
commit 59dd7abc56
2 changed files with 3 additions and 3 deletions

4
configure vendored
View File

@ -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'

View File

@ -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'