diff options
author | Guido van Rossum <guido@python.org> | 1996-10-10 19:12:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-10-10 19:12:47 (GMT) |
commit | 43e6661d252a5f72fefdae8570aa97071c1a630d (patch) | |
tree | 58910f29ba96c2a80a3cf4a939f0b73a150b51c4 | |
parent | b030bc026eb57861568fdc9310512185c95a6f11 (diff) | |
download | cpython-43e6661d252a5f72fefdae8570aa97071c1a630d.zip cpython-43e6661d252a5f72fefdae8570aa97071c1a630d.tar.gz cpython-43e6661d252a5f72fefdae8570aa97071c1a630d.tar.bz2 |
Add a dependency on clobber to the boot target. Now, if you run "make
-f Makefile.pre.in boot", all traces of previous runs are removed.
-rw-r--r-- | Misc/Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/Makefile.pre.in b/Misc/Makefile.pre.in index dcc57f2..e9caa80 100644 --- a/Misc/Makefile.pre.in +++ b/Misc/Makefile.pre.in @@ -245,7 +245,7 @@ sedscript: $(MAKEFILE) echo "/^BASESETUP=/s%=.*%= $(BASESETUP)%" >>sedscript # Bootstrap target -boot: +boot: clobber VERSION=`python -c "import sys; print sys.version[:3]"`; \ installdir=`python -c "import sys; print sys.prefix"`; \ exec_installdir=`python -c "import sys; print sys.exec_prefix"`; \ |