Skip to content

Commit 417faa6

Browse files
authored
Makefile: Fix missing slashes (GH-28659)
1 parent 0be3381 commit 417faa6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile.pre.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1443,13 +1443,13 @@ altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
14431443
fi; \
14441444
fi
14451445
if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
1446-
rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-32$(EXE); \
1446+
rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE); \
14471447
lipo $(LIPO_32BIT_FLAGS) \
14481448
-output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \
14491449
$(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
14501450
fi
14511451
if test "x$(LIPO_INTEL64_FLAGS)" != "x" ; then \
1452-
rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-intel64$(EXE); \
1452+
rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-intel64$(EXE); \
14531453
lipo $(LIPO_INTEL64_FLAGS) \
14541454
-output $(DESTDIR)$(BINDIR)/python$(VERSION)-intel64$(EXE) \
14551455
$(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Makefile: fix missing slashes in some invocations cleaning previous build results when builing a macOS universal binary.

0 commit comments

Comments
 (0)