diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-05-05 13:20:31 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-05-05 13:20:31 (GMT) |
commit | 01d05ada7bfc84c26612c1eb42cb1787d3666ad6 (patch) | |
tree | 6926b0622d55e19aa9af2c3fcf3479b05d433f76 /Mac/Makefile.in | |
parent | ac7336f64f3b11963a0a07dbd31c8b58be11b1a7 (diff) | |
download | cpython-01d05ada7bfc84c26612c1eb42cb1787d3666ad6.zip cpython-01d05ada7bfc84c26612c1eb42cb1787d3666ad6.tar.gz cpython-01d05ada7bfc84c26612c1eb42cb1787d3666ad6.tar.bz2 |
Small update to Mac/Makefile to ensure that we
install python binaries that support all
architectures in a universal build.
Diffstat (limited to 'Mac/Makefile.in')
-rw-r--r-- | Mac/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Makefile.in b/Mac/Makefile.in index 467bb32..3c974a0 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -58,8 +58,8 @@ install_pythonw: pythonw ifneq ($(LIPO_32BIT_FLAGS),) lipo $(LIPO_32BIT_FLAGS) -output $(DESTDIR)$(prefix)/bin/python$(VERSION)-32 pythonw lipo $(LIPO_32BIT_FLAGS) -output $(DESTDIR)$(prefix)/bin/pythonw$(VERSION)-32 pythonw - ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)" - ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python$(VERSION)" + ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw3-32" + ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python3-32" endif # |