diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-02-07 11:50:54 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-02-07 11:50:54 (GMT) |
commit | c0fa2d24ebf4fc4d91b25dbdf4b33479b8ad1705 (patch) | |
tree | 08210839ab812e2228651ee95e14722be811de17 /configure.in | |
parent | 4da7d7822a1a99b9bd30cefe31c2496b7fd1e604 (diff) | |
download | cpython-c0fa2d24ebf4fc4d91b25dbdf4b33479b8ad1705.zip cpython-c0fa2d24ebf4fc4d91b25dbdf4b33479b8ad1705.tar.gz cpython-c0fa2d24ebf4fc4d91b25dbdf4b33479b8ad1705.tar.bz2 |
Fix for issue 7714 (backport from trunk)
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 8e9eeb8..a130ec4 100644 --- a/configure.in +++ b/configure.in @@ -1574,7 +1574,7 @@ case $ac_sys_system/$ac_sys_release in LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)' LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';; Darwin/*) - gcc_version=`gcc -v 2>&1 | grep version | cut -d\ -f3` + gcc_version=`gcc -dumpversion` if test ${gcc_version} '<' 4.0 then LIBTOOL_CRUFT="-lcc_dynamic" |