(original) (raw)

changeset: 68306:12f0da000dc4 branch: 3.1 parent: 68300:c7e71d6ad48f user: Thomas Wouters thomas@python.org date: Sun Mar 06 11:49:15 2011 -0800 files: Makefile.pre.in Misc/NEWS description: Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from working correctly with a relative path. diff -r c7e71d6ad48f -r 12f0da000dc4 Makefile.pre.in --- a/Makefile.pre.in Sun Mar 06 11:28:23 2011 +0100 +++ b/Makefile.pre.in Sun Mar 06 11:49:15 2011 -0800 @@ -1035,7 +1035,7 @@ --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 @@ ./$(BUILDPYTHON) (srcdir)/Tools/scripts/setup.pyinstall−−prefix=(srcdir)/Tools/scripts/setup.py install \ --prefix=(srcdir)/Tools/scripts/setup.pyinstallprefix=(prefix) \ --install-scripts=$(BINDIR) \ - --root=/$(DESTDIR) + --root=$(DESTDIR)/ # Build the toplevel Makefile Makefile.pre: Makefile.pre.in config.status diff -r c7e71d6ad48f -r 12f0da000dc4 Misc/NEWS --- a/Misc/NEWS Sun Mar 06 11:28:23 2011 +0100 +++ b/Misc/NEWS Sun Mar 06 11:49:15 2011 -0800 @@ -192,6 +192,8 @@ 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. /thomas@python.org