From 470c2b3af178711d8c6b0f0e9c2bd7bac845389c Mon Sep 17 00:00:00 2001 From: Bryan Drewery Date: Sat, 17 Oct 2015 04:03:53 +0000 Subject: [PATCH] Export OSRELDATE so sub-makes don't look it up again. We pass BOOTSTRAPPING=${OSRELDATE} to some of the sub-makes. Rather than chase every ${MAKE} invokation, just export it as bmake lets us. Sponsored by: EMC / Isilon Storage Division --- Makefile.inc1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.inc1 b/Makefile.inc1 index e491053e2f1d..541858529949 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -148,6 +148,7 @@ OSRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ .else OSRELDATE= 0 .endif +.export OSRELDATE .endif .if !defined(VERSION)