diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-21 15:19:14 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-21 15:19:14 (GMT) |
commit | f6350d2654070f008d47c84159c6ea1a6a0d394d (patch) | |
tree | 572a3cdc1ffa942de72a0a8527af6f0d9dd24c68 /configure.in | |
parent | 6faee4e2ce8ee107bfe92bac74afa2c30ed4aebd (diff) | |
download | cpython-f6350d2654070f008d47c84159c6ea1a6a0d394d.zip cpython-f6350d2654070f008d47c84159c6ea1a6a0d394d.tar.gz cpython-f6350d2654070f008d47c84159c6ea1a6a0d394d.tar.bz2 |
Issue #1633863: Don't ignore $CC under AIX.
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 c6a51a3..d9e208e 100644 --- a/configure.in +++ b/configure.in @@ -449,7 +449,7 @@ AC_ARG_WITH(gcc, without_gcc=$withval;; esac], [ case $ac_sys_system in - AIX*) CC=cc_r + AIX*) CC=${CC:-xlc_r} without_gcc=;; *) without_gcc=no;; esac]) |