summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-12-11 12:51:58 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-12-11 12:51:58 (GMT)
commit79f3c53ee8644b9536727efa562a3974c0d6b26c (patch)
tree8fc5d4d3e34d27d1687d9ee90fe0eeadbf22c231 /configure
parent0efa17c94386c957cf63aad7d2d513c14cd8fd4a (diff)
downloadcpython-79f3c53ee8644b9536727efa562a3974c0d6b26c.zip
cpython-79f3c53ee8644b9536727efa562a3974c0d6b26c.tar.gz
cpython-79f3c53ee8644b9536727efa562a3974c0d6b26c.tar.bz2
Patch #651289: Fix quoting errors.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 60f5f5f..20d7199 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 1.373 .
+# From configure.in Revision: 1.374 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3.
#
@@ -9300,10 +9300,10 @@ then
NetBSD*) LDSHARED="cc -shared ${LDFLAGS}";;
OpenUNIX*|UnixWare*)
if test "$GCC" = "yes"
- then LDSHARED="$(CC) -shared"
- else LDSHARED="$(CC) -G"
+ then LDSHARED='$(CC) -shared'
+ else LDSHARED='$(CC) -G'
fi;;
- SCO_SV*) LDSHARED="$(CC) -Wl,-G,-Bexport";;
+ SCO_SV*) LDSHARED='$(CC) -Wl,-G,-Bexport';;
Monterey*) LDSHARED="cc -G -dy -Bdynamic -Bexport -L/usr/lib/ia64l64";;
CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
atheos*) LDSHARED="gcc -shared";;