summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-10-07 06:21:41 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-10-07 06:21:41 (GMT)
commitaa5afe1cedec429b5b367b7dc9e0d63574f96a62 (patch)
tree34d9b15bffcce2654a8866ea02ddac87cdf9f910 /configure.in
parentbb20bb6bdb01596fac70b86949d045a45d7519d8 (diff)
downloadcpython-aa5afe1cedec429b5b367b7dc9e0d63574f96a62.zip
cpython-aa5afe1cedec429b5b367b7dc9e0d63574f96a62.tar.gz
cpython-aa5afe1cedec429b5b367b7dc9e0d63574f96a62.tar.bz2
Fix quoting for Solaris LDSHARED. Will backport to 2.2.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 4ec1bed..d752434 100644
--- a/configure.in
+++ b/configure.in
@@ -928,7 +928,7 @@ then
SunOS/5*)
if test "$GCC" = "yes"
then LDSHARED='$(CC) -shared'
- else LDSHARED="$(CC) -G";
+ else LDSHARED='$(CC) -G';
fi ;;
hp*|HP*) LDSHARED="ld -b";;
OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;