diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-03-30 18:00:28 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-03-30 18:00:28 (GMT) |
commit | e391835f35a0829f304877fa50afa2d63adeb99b (patch) | |
tree | b754e332712a50f5d43e3d4cc2b9955853c70284 /configure.in | |
parent | 207b4c227f8d578f9366655232951944eac8725a (diff) | |
download | cpython-e391835f35a0829f304877fa50afa2d63adeb99b.zip cpython-e391835f35a0829f304877fa50afa2d63adeb99b.tar.gz cpython-e391835f35a0829f304877fa50afa2d63adeb99b.tar.bz2 |
Merged revisions 70730 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70730 | ronald.oussoren | 2009-03-30 12:53:39 -0500 (Mon, 30 Mar 2009) | 3 lines
Fix issue where 'make altinstall' or 'make install' would install everything
that needs to be installed on OSX (depending on the configure flags)
........
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index f57c8ae..1a54981 100644 --- a/configure.in +++ b/configure.in @@ -154,7 +154,9 @@ AC_ARG_ENABLE(framework, if test "$UNIVERSAL_ARCHS" = "all" then FRAMEWORKINSTALLLAST="frameworkinstallmaclib frameworkinstallapps4way frameworkinstallunixtools4way" + FRAMEWORKALTINSTALLLAST="frameworkinstallmaclib frameworkinstallapps4way frameworkaltinstallunixtools4way" else + FRAMEWORKINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools" FRAMEWORKALTINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkaltinstallunixtools" fi |