diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-21 15:23:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-21 15:23:17 (GMT) |
commit | 285cd1609d7380514b18767f288f678a0a6bb7c2 (patch) | |
tree | bfe48a4cf4c754a8e09c521f7fed2aace6dd16e2 /configure.in | |
parent | 5a58772c2a36b6adcec6bf84f00b039fd821b44c (diff) | |
download | cpython-285cd1609d7380514b18767f288f678a0a6bb7c2.zip cpython-285cd1609d7380514b18767f288f678a0a6bb7c2.tar.gz cpython-285cd1609d7380514b18767f288f678a0a6bb7c2.tar.bz2 |
Merged revisions 84946 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84946 | antoine.pitrou | 2010-09-21 17:19:14 +0200 (mar., 21 sept. 2010) | 4 lines
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 51cdaa5..3907818 100644 --- a/configure.in +++ b/configure.in @@ -479,7 +479,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=;; BeOS*) case $BE_HOST_CPU in |