mirror of https://github.com/python/cpython
Makefile: Fix missing slashes (GH-28659)
This commit is contained in:
parent
0be338199f
commit
417faa69bd
|
@ -1443,13 +1443,13 @@ altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
|
|||
fi; \
|
||||
fi
|
||||
if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
|
||||
rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-32$(EXE); \
|
||||
rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE); \
|
||||
lipo $(LIPO_32BIT_FLAGS) \
|
||||
-output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \
|
||||
$(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
|
||||
fi
|
||||
if test "x$(LIPO_INTEL64_FLAGS)" != "x" ; then \
|
||||
rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-intel64$(EXE); \
|
||||
rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-intel64$(EXE); \
|
||||
lipo $(LIPO_INTEL64_FLAGS) \
|
||||
-output $(DESTDIR)$(BINDIR)/python$(VERSION)-intel64$(EXE) \
|
||||
$(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Makefile: fix missing slashes in some invocations cleaning previous build results when builing a macOS universal binary.
|
Loading…
Reference in New Issue