summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-07-21 02:53:27 (GMT)
committerGuido van Rossum <guido@python.org>1996-07-21 02:53:27 (GMT)
commit81652ab67a404639a29c1239da1a6439eeffbda4 (patch)
tree1d44e6ed7c4cca2b7a039905e00ff3ddf9c143f9 /configure
parentaaa54309dbe840aedb1a18f4c5eb89b18bf222c2 (diff)
downloadcpython-81652ab67a404639a29c1239da1a6439eeffbda4.zip
cpython-81652ab67a404639a29c1239da1a6439eeffbda4.tar.gz
cpython-81652ab67a404639a29c1239da1a6439eeffbda4.tar.bz2
Use gcc, not gcc-elf on Linux
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 1f4ad8d..4ee5fe9 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
-# From configure.in Revision: 1.27
+# From configure.in Revision: 1.28
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.10
@@ -1447,7 +1447,7 @@ then
hp*|HP*) LDSHARED="ld -b";;
OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
DYNIX/ptx*) LDSHARED="ld -G";;
- Linux*) LDSHARED="gcc-elf -shared";;
+ Linux*) LDSHARED="gcc -shared";;
FreeBSD*) LDSHARED="ld -Bshareable";;
*) LDSHARED="ld";;
esac