diff options
author | Guido van Rossum <guido@python.org> | 1996-08-28 19:23:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-28 19:23:01 (GMT) |
commit | f71bd68673f2a5d65330a413eb421c2fac634e4a (patch) | |
tree | 601a300731af4a277825ddd73db97c3c1648dff5 /Makefile.in | |
parent | 7629bbc73c15ce954e638fb51178c984bc85c720 (diff) | |
download | cpython-f71bd68673f2a5d65330a413eb421c2fac634e4a.zip cpython-f71bd68673f2a5d65330a413eb421c2fac634e4a.tar.gz cpython-f71bd68673f2a5d65330a413eb421c2fac634e4a.tar.bz2 |
Fix $PATH and add $PYTHONPATH used to run regen.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 57dad87..cb92728 100644 --- a/Makefile.in +++ b/Makefile.in @@ -261,7 +261,8 @@ libinstall: python $(srcdir)/Lib/$(MACHDEP) $(srcdir)/Lib/$(MACHDEP): mkdir $(srcdir)/Lib/$(MACHDEP) cp $(srcdir)/Lib/generic/regen $(srcdir)/Lib/$(MACHDEP)/regen - export PATH; PATH="`pwd`:$PATH"; \ + export PATH; PATH="`pwd`:$(PATH)"; \ + export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \ cd $(srcdir)/Lib/$(MACHDEP); ./regen # Install the include files |