diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-01-03 20:39:29 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-01-03 20:39:29 (GMT) |
commit | 01f43118f7b51a538ad9e3f23251319bd3db125e (patch) | |
tree | 5d4d32d3e38c9f448fb8f94aa36c97c7690cf657 /Makefile.pre.in | |
parent | bb51ed333b623b6acf90a34ec6da9b4d076503e5 (diff) | |
download | cpython-01f43118f7b51a538ad9e3f23251319bd3db125e.zip cpython-01f43118f7b51a538ad9e3f23251319bd3db125e.tar.gz cpython-01f43118f7b51a538ad9e3f23251319bd3db125e.tar.bz2 |
Use RUNSHARED for python invocations. Fixes #661408.
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 6683c88..c7c4156 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -838,7 +838,7 @@ frameworkinstallunixtools: # This installs IDLE idleinstall: - SRCDIR=$(srcdir) \ + SRCDIR=$(srcdir) $(RUNSHARED) \ ./$(BUILDPYTHON) $(srcdir)/Tools/idle/setup.py install \ --check-tkinter \ --prefix=$(prefix) \ @@ -847,7 +847,7 @@ idleinstall: # This installs a few of the useful scripts in Tools/scripts scriptsinstall: - SRCDIR=$(srcdir) \ + SRCDIR=$(srcdir) $(RUNSHARED) \ ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \ --prefix=$(prefix) \ --install-scripts=$(BINDIR) |