diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2021-05-08 06:38:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 06:38:08 (GMT) |
commit | 80d250d68cf3bb511fd862169c681b28028499c2 (patch) | |
tree | 3e8222b7fde2306a2693d572562220d62efff7ca /Makefile.pre.in | |
parent | 42fcad26a487df166ee75600fbaab9818e967a0a (diff) | |
download | cpython-80d250d68cf3bb511fd862169c681b28028499c2.zip cpython-80d250d68cf3bb511fd862169c681b28028499c2.tar.gz cpython-80d250d68cf3bb511fd862169c681b28028499c2.tar.bz2 |
Fix make libainstall. (GH-25980)
Initial patch by Benno Leslie.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 92cc486..080318b 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"; \ |