Skip to content

Commit bc66fac

Browse files
authored
bpo-36721: Fix pkg-config symbolic links on "make install" (GH-13551)
1 parent 51394b8 commit bc66fac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.pre.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1261,8 +1261,8 @@ bininstall: altbininstall
12611261
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \
12621262
rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \
12631263
(cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \
1264-
rm -f $(DESTDIR)$(LIBPC)/python-embed-$(LDVERSION).pc; \
1265-
(cd $(DESTDIR)$(LIBPC); $(LN) -s python-embed-$(VERSION).pc python-embed-$(LDVERSION).pc); \
1264+
rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION)-embed.pc; \
1265+
(cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION)-embed.pc python-$(LDVERSION)-embed.pc); \
12661266
fi
12671267
-rm -f $(DESTDIR)$(BINDIR)/python3-config
12681268
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)

0 commit comments

Comments
 (0)