mirror of
https://github.com/python/cpython.git
synced 2025-09-30 12:21:51 +00:00
bpo-36721: Fix pkg-config symbolic links on "make install" (GH-13551)
This commit is contained in:
parent
51394b8c3d
commit
bc66faccb8
1 changed files with 2 additions and 2 deletions
|
@ -1261,8 +1261,8 @@ bininstall: altbininstall
|
||||||
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \
|
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \
|
||||||
rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \
|
rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \
|
||||||
(cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \
|
(cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \
|
||||||
rm -f $(DESTDIR)$(LIBPC)/python-embed-$(LDVERSION).pc; \
|
rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION)-embed.pc; \
|
||||||
(cd $(DESTDIR)$(LIBPC); $(LN) -s python-embed-$(VERSION).pc python-embed-$(LDVERSION).pc); \
|
(cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION)-embed.pc python-$(LDVERSION)-embed.pc); \
|
||||||
fi
|
fi
|
||||||
-rm -f $(DESTDIR)$(BINDIR)/python3-config
|
-rm -f $(DESTDIR)$(BINDIR)/python3-config
|
||||||
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)
|
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue