Commit ece919eb authored by Antoine Pitrou's avatar Antoine Pitrou

Fix bad quoting in r87639. Caught by Arfrever.

parent b6f42404
#! /bin/sh #! /bin/sh
# From configure.in Revision: 87577 . # From configure.in Revision: 87639 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for python 3.2. # Generated by GNU Autoconf 2.65 for python 3.2.
# #
...@@ -7535,8 +7535,8 @@ then ...@@ -7535,8 +7535,8 @@ then
esac esac
fi;; fi;;
NetBSD*|DragonFly*) NetBSD*|DragonFly*)
LDSHARED="$(CC) -shared" LDSHARED='$(CC) -shared'
LDCXXSHARED="$(CXX) -shared";; LDCXXSHARED='$(CXX) -shared';;
OpenUNIX*|UnixWare*) OpenUNIX*|UnixWare*)
if test "$GCC" = "yes" ; then if test "$GCC" = "yes" ; then
LDSHARED='$(CC) -shared' LDSHARED='$(CC) -shared'
......
...@@ -1750,8 +1750,8 @@ then ...@@ -1750,8 +1750,8 @@ then
esac esac
fi;; fi;;
NetBSD*|DragonFly*) NetBSD*|DragonFly*)
LDSHARED="$(CC) -shared" LDSHARED='$(CC) -shared'
LDCXXSHARED="$(CXX) -shared";; LDCXXSHARED='$(CXX) -shared';;
OpenUNIX*|UnixWare*) OpenUNIX*|UnixWare*)
if test "$GCC" = "yes" ; then if test "$GCC" = "yes" ; then
LDSHARED='$(CC) -shared' 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