diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-08-20 12:01:05 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-08-20 12:01:05 (GMT) |
commit | 4cf6604b8292b1b61fb2e7f101c4c375052e50c5 (patch) | |
tree | 8587d2b53db24071b9fe1cb6693e7845977c4768 /configure.in | |
parent | e1043fc23003426334e2e4f71ca92c8e92c81b98 (diff) | |
download | cpython-4cf6604b8292b1b61fb2e7f101c4c375052e50c5.zip cpython-4cf6604b8292b1b61fb2e7f101c4c375052e50c5.tar.gz cpython-4cf6604b8292b1b61fb2e7f101c4c375052e50c5.tar.bz2 |
Issue #12326: sys.platform is now always 'linux2' on Linux
Even if Python is compiled on Linux 3.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in index c4ad4e8..3e60d8e 100644 --- a/configure.in +++ b/configure.in @@ -290,6 +290,7 @@ then MACHDEP="$ac_md_system$ac_md_release" case $MACHDEP in + linux*) MACHDEP="linux2";; cygwin*) MACHDEP="cygwin";; darwin*) MACHDEP="darwin";; irix646) MACHDEP="irix6";; |