diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-08-25 11:37:43 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-08-25 11:37:43 (GMT) |
commit | 9f5c0c41ce000e57f9d196f398dcc7a4142ab3ce (patch) | |
tree | 6b773a71ec5aac9355560fe7383a393c8280f650 /Doc/dist/dist.tex | |
parent | be83737c7cd98df576239d4a8f86024ee3b2845c (diff) | |
download | cpython-9f5c0c41ce000e57f9d196f398dcc7a4142ab3ce.zip cpython-9f5c0c41ce000e57f9d196f398dcc7a4142ab3ce.tar.gz cpython-9f5c0c41ce000e57f9d196f398dcc7a4142ab3ce.tar.bz2 |
Patch #736857, #736859: Add -e option to build_scripts.
Diffstat (limited to 'Doc/dist/dist.tex')
-rw-r--r-- | Doc/dist/dist.tex | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index b09f1e0..b590b31 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -640,7 +640,9 @@ started from the command line. Scripts don't require Distutils to do anything very complicated. The only clever feature is that if the first line of the script starts with \code{\#!} and contains the word ``python'', the Distutils will adjust the first line to refer to the -current interpreter location. +current interpreter location. By default, it is replaced with the +current interpreter location. The '--executable=/-e' switch will +allow the interpreter path to be explicitly overridden. The \option{scripts} option simply is a list of files to be handled in this way. From the PyXML setup script: |