21 lines
1.0 KiB
Diff
21 lines
1.0 KiB
Diff
diff -Naur Python-3.8.0-orig/Makefile.pre.in Python-3.8.0/Makefile.pre.in
|
|
--- Python-3.8.0-orig/Makefile.pre.in 2019-10-22 10:04:52.924751200 +0300
|
|
+++ Python-3.8.0/Makefile.pre.in 2019-10-22 10:05:08.665178900 +0300
|
|
@@ -1306,6 +1306,7 @@
|
|
else true; \
|
|
fi
|
|
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) python3$(EXE))
|
|
+ (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) python$(EXE))
|
|
-if test "$(VERSION)" != "$(LDVERSION)"; then \
|
|
rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-config; \
|
|
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \
|
|
@@ -1314,6 +1315,8 @@
|
|
rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION)-embed.pc; \
|
|
(cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION)-embed.pc python-$(LDVERSION)-embed.pc); \
|
|
fi
|
|
+ -rm -f $(DESTDIR)$(BINDIR)/python-config
|
|
+ (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config)
|
|
-rm -f $(DESTDIR)$(BINDIR)/python3-config
|
|
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)
|
|
-rm -f $(DESTDIR)$(LIBPC)/python3.pc
|