diff options
author | Ned Deily <nad@acm.org> | 2012-06-24 07:19:31 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2012-06-24 07:19:31 (GMT) |
commit | 430d7a3090389606c2c9370d854a08eacc7f6823 (patch) | |
tree | 3abed9bb6c9129c887430e8f324008a24f59fcc9 /Mac/Makefile.in | |
parent | 7d9cf83f2fe3f3db06b6b34bca186e45bb940128 (diff) | |
download | cpython-430d7a3090389606c2c9370d854a08eacc7f6823.zip cpython-430d7a3090389606c2c9370d854a08eacc7f6823.tar.gz cpython-430d7a3090389606c2c9370d854a08eacc7f6823.tar.bz2 |
Remove obsolete fixapplepython23 script and PythonSystemFixes
installer package from the OS X Makefile for Python 3. It has
never worked on Python 3 and is not needed there as pre-10.3.9
installs are no longer supported.
Diffstat (limited to 'Mac/Makefile.in')
-rw-r--r-- | Mac/Makefile.in | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/Mac/Makefile.in b/Mac/Makefile.in index 6d2ad16..38eaa15 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -43,11 +43,10 @@ STRIPFLAG=-s CPMAC=/Developer/Tools/CpMac APPTEMPLATE=$(srcdir)/Resources/app -APPSUBDIRS=MacOS Resources +APPSUBDIRS=MacOS Resources compileall=$(srcdir)/../Lib/compileall.py -installapps: install_Python install_pythonw install_PythonLauncher install_IDLE \ - checkapplepython +installapps: install_Python install_pythonw install_PythonLauncher install_IDLE install_pythonw: pythonw $(INSTALL_PROGRAM) $(STRIPFLAG) pythonw "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)" @@ -196,14 +195,6 @@ installextras: $(srcdir)/Extras.install.py "$(DESTDIR)$(prefix)/share/doc/python$(VERSION)/examples/Tools" ; \ chmod -R ugo+rX,go-w "$(DESTDIR)$(prefix)/share/doc/python$(VERSION)/examples/Tools" - -checkapplepython: $(srcdir)/Tools/fixapplepython23.py - @if ! $(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Tools/fixapplepython23.py -n; then \ - echo "* WARNING: Apple-installed Python 2.3 will have trouble building extensions from now on."; \ - echo "* WARNING: Run $(srcdir)/Tools/fixapplepython23.py with \"sudo\" to fix this."; \ - fi - - clean: rm pythonw cd PythonLauncher && make clean |