mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Makefile: Fix missing slashes (GH-28659)
This commit is contained in:
parent
0be338199f
commit
417faa69bd
2 changed files with 3 additions and 2 deletions
|
@ -1443,13 +1443,13 @@ altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
|
||||||
fi; \
|
fi; \
|
||||||
fi
|
fi
|
||||||
if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
|
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) \
|
lipo $(LIPO_32BIT_FLAGS) \
|
||||||
-output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \
|
-output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \
|
||||||
$(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
|
$(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
|
||||||
fi
|
fi
|
||||||
if test "x$(LIPO_INTEL64_FLAGS)" != "x" ; then \
|
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) \
|
lipo $(LIPO_INTEL64_FLAGS) \
|
||||||
-output $(DESTDIR)$(BINDIR)/python$(VERSION)-intel64$(EXE) \
|
-output $(DESTDIR)$(BINDIR)/python$(VERSION)-intel64$(EXE) \
|
||||||
$(DESTDIR)$(BINDIR)/python$(VERSION)$(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…
Add table
Add a link
Reference in a new issue