From e9b69040911ee1febbec3a2f2f93cf920d7d50db Mon Sep 17 00:00:00 2001 From: peter Date: Sat, 31 Aug 2002 07:18:40 +0000 Subject: Deal with bootstrapping from an old -current (almost exactly a year old) which fails the make tests (doesn't understand ${notdef:U}) and therefore fails on __FBSDID in usr.bin/make/*. -DBOOTSTRAPPING is no help here since this is before we are using the new share/mk/* files, and it would conflict with the builtin -DBOOTSTRAPPING support later.. so use a different flag. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d4940bb..e99c0f0 100644 --- a/Makefile +++ b/Makefile @@ -204,7 +204,8 @@ make: @echo " Upgrading the installed make" @echo "--------------------------------------------------------------" @cd ${.CURDIR}/usr.bin/make; \ - make obj && make depend && make all && make install + make obj && make -D_UPGRADING depend && \ + make -D_UPGRADING all && make install # # Define the upgrade targets. These are listed here in alphabetical -- cgit v1.1