Commit 59dd7abc authored by Antoine Pitrou's avatar Antoine Pitrou

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.
........
parent f1cc81a9
#! /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'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment