changeset: 72232:265da863d017 branch: 3.2 user: Victor Stinner date: Sat Aug 20 14:01:05 2011 +0200 files: Misc/NEWS configure configure.in description: Issue #12326: sys.platform is now always 'linux2' on Linux Even if Python is compiled on Linux 3. diff -r 6d3e82c3dc6e -r 265da863d017 Misc/NEWS --- a/Misc/NEWS Fri Aug 19 22:54:50 2011 +0200 +++ b/Misc/NEWS Sat Aug 20 14:01:05 2011 +0200 @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #12326: sys.platform is now always 'linux2' on Linux, even if Python + is compiled on Linux 3. + + Library ------- diff -r 6d3e82c3dc6e -r 265da863d017 configure --- a/configure Fri Aug 19 22:54:50 2011 +0200 +++ b/configure Sat Aug 20 14:01:05 2011 +0200 @@ -2997,6 +2997,7 @@ MACHDEP="$ac_md_system$ac_md_release" case $MACHDEP in + linux*) MACHDEP="linux2";; cygwin*) MACHDEP="cygwin";; darwin*) MACHDEP="darwin";; irix646) MACHDEP="irix6";; diff -r 6d3e82c3dc6e -r 265da863d017 configure.in --- a/configure.in Fri Aug 19 22:54:50 2011 +0200 +++ b/configure.in Sat Aug 20 14:01:05 2011 +0200 @@ -290,6 +290,7 @@ MACHDEP="$ac_md_system$ac_md_release" case $MACHDEP in + linux*) MACHDEP="linux2";; cygwin*) MACHDEP="cygwin";; darwin*) MACHDEP="darwin";; irix646) MACHDEP="irix6";;