diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-06-02 03:02:29 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-06-02 03:02:29 (GMT) |
commit | 19fab761b71a1687aee3415db3a937b5ce31975d (patch) | |
tree | 33750125a04d6a5870b1f40ee1da5b4f3903747d /configure.in | |
parent | 25497a1fa1b112759fce48eeb3711fcae382871c (diff) | |
download | cpython-19fab761b71a1687aee3415db3a937b5ce31975d.zip cpython-19fab761b71a1687aee3415db3a937b5ce31975d.tar.gz cpython-19fab761b71a1687aee3415db3a937b5ce31975d.tar.bz2 |
Have configure raise an error when building on AtheOS. Code specific to AtheOS
will be removed in Python 2.7.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 66ef840..2809813 100644 --- a/configure.in +++ b/configure.in @@ -450,7 +450,7 @@ AC_AIX # Check for unsupported systems case $ac_sys_system/$ac_sys_release in -Linux*/1*) +atheos*|Linux*/1*) echo This system \($ac_sys_system/$ac_sys_release\) is no longer supported. echo See README for details. exit 1;; |