From 43e6661d252a5f72fefdae8570aa97071c1a630d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 10 Oct 1996 19:12:47 +0000 Subject: [PATCH] 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. --- Misc/Makefile.pre.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/Makefile.pre.in b/Misc/Makefile.pre.in index dcc57f2ad29..e9caa801c9e 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"`; \