diff options
author | Thomas Wouters <thomas@python.org> | 2011-03-06 19:49:15 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2011-03-06 19:49:15 (GMT) |
commit | 81638f1351780eccb70bbc701ce366861a914d2e (patch) | |
tree | 262ec3463aa8ecc39c7cc4d6f9b73866fdb125eb /Makefile.pre.in | |
parent | 21967d0b4d4ec19ce4f104d0083041e66d444506 (diff) | |
download | cpython-81638f1351780eccb70bbc701ce366861a914d2e.zip cpython-81638f1351780eccb70bbc701ce366861a914d2e.tar.gz cpython-81638f1351780eccb70bbc701ce366861a914d2e.tar.bz2 |
Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from
working correctly with a relative path.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 211a703..fc3116a 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -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 |