diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-03-30 17:53:39 +0000 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-03-30 17:53:39 +0000 |
commit | bb8cb0e192c1da800fee1d08b13534ca3db4d53a (patch) | |
tree | f957e27ce04f2714a07b53f6748b4541488492f4 | |
parent | 648a4fecedd6b7092fda5281355103e1a73f5541 (diff) | |
download | cpython-git-bb8cb0e192c1da800fee1d08b13534ca3db4d53a.tar.gz |
Fix issue where 'make altinstall' or 'make install' would install everything
that needs to be installed on OSX (depending on the configure flags)
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 68312 . +# From configure.in Revision: 70479 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 2.7. # @@ -1972,7 +1972,9 @@ if test "${enable_framework+set}" = set; then if test "$UNIVERSAL_ARCHS" = "all" then FRAMEWORKINSTALLLAST="frameworkinstallmaclib frameworkinstallapps4way frameworkinstallunixtools4way" + FRAMEWORKALTINSTALLLAST="frameworkinstallmaclib frameworkinstallapps4way frameworkaltinstallunixtools4way" else + FRAMEWORKINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools" FRAMEWORKALTINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkaltinstallunixtools" fi diff --git a/configure.in b/configure.in index 92a04a7b84..acfec69dd7 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 |