mirror of
https://github.com/python/cpython.git
synced 2025-11-03 11:23:31 +00:00
Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from
working correctly with a relative path.
This commit is contained in:
parent
21967d0b4d
commit
81638f1351
2 changed files with 4 additions and 2 deletions
|
|
@ -1035,7 +1035,7 @@ sharedinstall: sharedmods
|
|||
--prefix=$(prefix) \
|
||||
--install-scripts=$(BINDIR) \
|
||||
--install-platlib=$(DESTSHARED) \
|
||||
--root=/$(DESTDIR)
|
||||
--root=$(DESTDIR)/
|
||||
|
||||
# Here are a couple of targets for MacOSX again, to install a full
|
||||
# framework-based Python. frameworkinstall installs everything, the
|
||||
|
|
@ -1115,7 +1115,7 @@ scriptsinstall:
|
|||
./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
|
||||
--prefix=$(prefix) \
|
||||
--install-scripts=$(BINDIR) \
|
||||
--root=/$(DESTDIR)
|
||||
--root=$(DESTDIR)/
|
||||
|
||||
# Build the toplevel Makefile
|
||||
Makefile.pre: Makefile.pre.in config.status
|
||||
|
|
|
|||
|
|
@ -192,6 +192,8 @@ Extensions
|
|||
Build
|
||||
-----
|
||||
|
||||
- Issue #11411: Fix 'make DESTDIR=' with a relative destination.
|
||||
|
||||
- Issue #11184: Fix large-file support on AIX.
|
||||
|
||||
- Issue #941346: Fix broken shared library build on AIX.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue