From: Ronald Oussoren Date: Tue, 20 Apr 2010 15:34:43 +0000 (+0000) Subject: Ensure framework actually installs after earlier X-Git-Tag: v2.6.6rc1~428 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d0832d03c6634ea8fd18cf34d9cc6b1d96f20d9;p=thirdparty%2FPython%2Fcpython.git Ensure framework actually installs after earlier changes to CFLAGS and BASECFLAGS handling --- diff --git a/Mac/Makefile.in b/Mac/Makefile.in index 2f3b513d707b..949e22903455 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -15,6 +15,8 @@ LDFLAGS=@LDFLAGS@ FRAMEWORKUNIXTOOLSPREFIX=@FRAMEWORKUNIXTOOLSPREFIX@ PYTHONFRAMEWORK=@PYTHONFRAMEWORK@ PYTHONFRAMEWORKIDENTIFIER=@PYTHONFRAMEWORKIDENTIFIER@ +MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@ +export MACOSX_DEPLOYMENT_TARGET # These are normally glimpsed from the previous set diff --git a/Mac/PythonLauncher/Makefile.in b/Mac/PythonLauncher/Makefile.in index d61e1aa59fb5..2551d230f234 100644 --- a/Mac/PythonLauncher/Makefile.in +++ b/Mac/PythonLauncher/Makefile.in @@ -2,7 +2,7 @@ CC=@CC@ LD=@CC@ BASECFLAGS=@BASECFLAGS@ OPT=@OPT@ -CFLAGS=$(BASECFLAGS) $(OPT) +CFLAGS=@CFLAGS@ $(BASECFLAGS) $(OPT) LDFLAGS=@LDFLAGS@ srcdir= @srcdir@ VERSION= @VERSION@