From 946cf890d45010c203bfba08d30d122574b4a411 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 11 Sep 1996 12:15:07 +0000 Subject: [PATCH] Improvement suggested by Sjoerd: use $(MAKE) in boot target and use $(srcdir)/Makefile.pre.in --- Misc/Makefile.pre.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Misc/Makefile.pre.in b/Misc/Makefile.pre.in index 1e14e6b3bf2..3621314b044 100644 --- a/Misc/Makefile.pre.in +++ b/Misc/Makefile.pre.in @@ -244,10 +244,11 @@ boot: 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"`; \ - make -f Makefile.pre.in Makefile VPATH=$(VPATH) srcdir=$(srcdir) \ + $(MAKE) -f $(srcdir)/Makefile.pre.in VPATH=$(VPATH) srcdir=$(srcdir) \ VERSION=$$VERSION \ installdir=$$installdir \ - exec_installdir=$$exec_installdir + exec_installdir=$$exec_installdir \ + Makefile # Handy target to remove intermediate files and backups clean: