diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-08-20 22:00:16 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-08-20 22:00:16 (GMT) |
commit | 7209ff2b317bcb66ff7eb6f4554528e901e85a93 (patch) | |
tree | 7acc2f834b939124806e2c5a2853fdad81b5eed1 | |
parent | ff3d9399fc79b64b23b60ac9a11fa9009e6333e7 (diff) | |
download | cpython-7209ff2b317bcb66ff7eb6f4554528e901e85a93.zip cpython-7209ff2b317bcb66ff7eb6f4554528e901e85a93.tar.gz cpython-7209ff2b317bcb66ff7eb6f4554528e901e85a93.tar.bz2 |
Issue #12326: woops, I really mean 'linux', not 'linux2'
Copy/paste (from Python 3.2) failure
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -3052,7 +3052,7 @@ then MACHDEP="$ac_md_system$ac_md_release" case $MACHDEP in - linux*) MACHDEP="linux2";; + linux*) MACHDEP="linux";; cygwin*) MACHDEP="cygwin";; darwin*) MACHDEP="darwin";; irix646) MACHDEP="irix6";; diff --git a/configure.in b/configure.in index ec390e5..c10f67a 100644 --- a/configure.in +++ b/configure.in @@ -304,7 +304,7 @@ then MACHDEP="$ac_md_system$ac_md_release" case $MACHDEP in - linux*) MACHDEP="linux2";; + linux*) MACHDEP="linux";; cygwin*) MACHDEP="cygwin";; darwin*) MACHDEP="darwin";; irix646) MACHDEP="irix6";; |