Skip to content

Commit 01d05ad

Browse files
Small update to Mac/Makefile to ensure that we
install python binaries that support all architectures in a universal build.
1 parent ac7336f commit 01d05ad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Mac/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ install_pythonw: pythonw
5858
ifneq ($(LIPO_32BIT_FLAGS),)
5959
lipo $(LIPO_32BIT_FLAGS) -output $(DESTDIR)$(prefix)/bin/python$(VERSION)-32 pythonw
6060
lipo $(LIPO_32BIT_FLAGS) -output $(DESTDIR)$(prefix)/bin/pythonw$(VERSION)-32 pythonw
61-
ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw$(VERSION)"
62-
ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python$(VERSION)"
61+
ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw3-32"
62+
ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python3-32"
6363
endif
6464

6565
#

0 commit comments

Comments
 (0)