[Python-checkins] Fix make libainstall. (GH-25980)

orsenthil webhook-mailer at python.org
Sat May 8 02:38:12 EDT 2021


https://github.com/python/cpython/commit/80d250d68cf3bb511fd862169c681b28028499c2
commit: 80d250d68cf3bb511fd862169c681b28028499c2
branch: main
author: Senthil Kumaran <senthil at uthcode.com>
committer: orsenthil <skumaran at gatech.edu>
date: 2021-05-07T23:38:08-07:00
summary:

Fix make libainstall. (GH-25980)

Initial patch by Benno Leslie.

files:
M Makefile.pre.in

diff --git a/Makefile.pre.in b/Makefile.pre.in
index 92cc48657a2af..080318bf454f6 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1688,7 +1688,7 @@ LIBPL=		@LIBPL@
 LIBPC=		$(LIBDIR)/pkgconfig
 
 libainstall:	@DEF_MAKE_RULE@ python-config
-	@for i in $(LIBDIR) $(LIBPL) $(LIBPC); \
+	@for i in $(LIBDIR) $(LIBPL) $(LIBPC) $(BINDIR); \
 	do \
 		if test ! -d $(DESTDIR)$$i; then \
 			echo "Creating directory $$i"; \



More information about the Python-checkins mailing list