diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-20 08:53:12 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-20 08:53:12 (GMT) |
commit | 1bf02022fe538b26d175306b6ebdc7839b4d7937 (patch) | |
tree | 943ab560b11ce5356f6bc49eb0eb622a2ad294b3 /Mac | |
parent | 68b4e01c48a9217cff9828f408474f9b52f6584b (diff) | |
download | cpython-1bf02022fe538b26d175306b6ebdc7839b4d7937.zip cpython-1bf02022fe538b26d175306b6ebdc7839b4d7937.tar.gz cpython-1bf02022fe538b26d175306b6ebdc7839b4d7937.tar.bz2 |
The PythonLauncher change is needed due
to changes in how the BASECFLAGS and CFLAGS
variables get filled by configure.
The Mac/Makefile.in change ensures that
pythonw gets build with the rigth deployment
targets.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Makefile.in | 3 | ||||
-rw-r--r-- | Mac/PythonLauncher/Makefile.in | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Mac/Makefile.in b/Mac/Makefile.in index afb06cc..5c18209 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -17,7 +17,8 @@ PYTHONFRAMEWORK=@PYTHONFRAMEWORK@ PYTHONFRAMEWORKIDENTIFIER=@PYTHONFRAMEWORKIDENTIFIER@ LIPO_32BIT_FLAGS=@LIPO_32BIT_FLAGS@ CC=@CC@ - +MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@ +export MACOSX_DEPLOYMENT_TARGET # These are normally glimpsed from the previous set bindir=$(prefix)/bin diff --git a/Mac/PythonLauncher/Makefile.in b/Mac/PythonLauncher/Makefile.in index d61e1aa..2551d23 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@ |