diff options
author | Guido van Rossum <guido@python.org> | 2001-10-17 06:26:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-10-17 06:26:53 (GMT) |
commit | b33e789cb85647da55a89b5f23302ce011859faf (patch) | |
tree | 5d01160b93fb44decf76aed3bb25ca020debccc8 /Makefile.pre.in | |
parent | f93befc2094f5adea7a7b7aa8b979d52241b2062 (diff) | |
download | cpython-b33e789cb85647da55a89b5f23302ce011859faf.zip cpython-b33e789cb85647da55a89b5f23302ce011859faf.tar.gz cpython-b33e789cb85647da55a89b5f23302ce011859faf.tar.bz2 |
SF patch #471894: Makefile installs pydoc incorrectly
Add --install-scripts=$(BINDIR) argument to "setup.py install"
invocation.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 26707e7..b9bbeb5 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -731,6 +731,7 @@ libainstall: all # This goes into $(exec_prefix) sharedinstall: ./$(PYTHON) -E $(srcdir)/setup.py install \ + --install-scripts=$(BINDIR) \ --install-platlib=$(DESTSHARED) # Install a MacOSX framework During build (before |