diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-05-24 16:27:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-24 16:27:13 (GMT) |
commit | bc66faccb8a6140e7e07b5e67843b7f21152c144 (patch) | |
tree | 6c34741ff4179e732c17fd30ae8e622a40b2d577 /Makefile.pre.in | |
parent | 51394b8c3d42e6e6d368251ff6f0612495724fc0 (diff) | |
download | cpython-bc66faccb8a6140e7e07b5e67843b7f21152c144.zip cpython-bc66faccb8a6140e7e07b5e67843b7f21152c144.tar.gz cpython-bc66faccb8a6140e7e07b5e67843b7f21152c144.tar.bz2 |
bpo-36721: Fix pkg-config symbolic links on "make install" (GH-13551)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index a149fde..466cd76 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1261,8 +1261,8 @@ bininstall: altbininstall (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \ rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \ (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \ - rm -f $(DESTDIR)$(LIBPC)/python-embed-$(LDVERSION).pc; \ - (cd $(DESTDIR)$(LIBPC); $(LN) -s python-embed-$(VERSION).pc python-embed-$(LDVERSION).pc); \ + 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)/python3-config (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config) |