From 7b2f27b0fe1959aad1d2a995f15e8022e73544d7 Mon Sep 17 00:00:00 2001 From: Peter Wemm 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. --- usr.bin/make/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'usr.bin/make') diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index 4f46cae06534a..6208a2819daa4 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -16,6 +16,9 @@ SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ NOSHARED?= YES CFLAGS+=-DMAKE_VERSION=\"5200208240\" +.if defined(_UPGRADING) +CFLAGS+=-D__FBSDID=__RCSID +.endif main.o: ${MAKEFILE} -- cgit v1.3