summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-08-20 12:01:05 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-08-20 12:01:05 (GMT)
commit0c17d0d96e9684e29a731227452355da79b14b5b (patch)
tree2556bef8b91a6b5942d0af3eee8303042bdf6c00 /configure
parent6a633bb87837fb8da42f6ba81e9fa86fdab61a5a (diff)
downloadcpython-0c17d0d96e9684e29a731227452355da79b14b5b.zip
cpython-0c17d0d96e9684e29a731227452355da79b14b5b.tar.gz
cpython-0c17d0d96e9684e29a731227452355da79b14b5b.tar.bz2
Issue #12326: sys.platform is now always 'linux2' on Linux
Even if Python is compiled on Linux 3.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index 508ae34..9d85e35 100755
--- a/configure
+++ b/configure
@@ -2997,6 +2997,7 @@ then
MACHDEP="$ac_md_system$ac_md_release"
case $MACHDEP in
+ linux*) MACHDEP="linux2";;
cygwin*) MACHDEP="cygwin";;
darwin*) MACHDEP="darwin";;
irix646) MACHDEP="irix6";;