summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2011-03-06 11:48:05 -0800
committerThomas Wouters <thomas@python.org>2011-03-06 11:48:05 -0800
commit5edae7ea5e7f63a81d975bfc960b4bb607e634a6 (patch)
treee986a3f28cc4793a9fa063ec308a37421419840e
parent90f00ea624fa56b06737def603a68bf4782289f4 (diff)
downloadcpython-git-5edae7ea5e7f63a81d975bfc960b4bb607e634a6.tar.gz
Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from
working correctly with a relative path.
-rw-r--r--Makefile.pre.in4
-rw-r--r--Misc/NEWS2
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index d385db2a34..2b28cae902 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1059,7 +1059,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
@@ -1131,7 +1131,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
diff --git a/Misc/NEWS b/Misc/NEWS
index 3e5cd8ece0..d562026ff8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -207,6 +207,8 @@ Extension Modules
Build
-----
+- Issue #11411: Fix 'make DESTDIR=' with a relative destination.
+
- Issue #10709: Add updated AIX notes in Misc/README.AIX.
- Issue #11184: Fix large-file support on AIX.