summaryrefslogtreecommitdiffstats
path: root/configure.in
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.in
parent0efa17c94386c957cf63aad7d2d513c14cd8fd4a (diff)
downloadcpython-79f3c53ee8644b9536727efa562a3974c0d6b26c.zip
cpython-79f3c53ee8644b9536727efa562a3974c0d6b26c.tar.gz
cpython-79f3c53ee8644b9536727efa562a3974c0d6b26c.tar.bz2
Patch #651289: Fix quoting errors.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index d82b0d7..f41b11d 100644
--- a/configure.in
+++ b/configure.in
@@ -1029,10 +1029,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";;