summaryrefslogtreecommitdiffstats
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2016-06-05 23:05:10 +0000
committerbdrewery <bdrewery@FreeBSD.org>2016-06-05 23:05:10 +0000
commit65190668661ad93b1ab4bffe3013104a8a2baa6f (patch)
tree1c4c67249095a8290bd9183d304a7186d639c100 /Makefile.inc1
parent6a0c9674b1bf8dd4b0fea3c5556658198a9404ef (diff)
downloadFreeBSD-src-65190668661ad93b1ab4bffe3013104a8a2baa6f.zip
FreeBSD-src-65190668661ad93b1ab4bffe3013104a8a2baa6f.tar.gz
Add a MINIMUM_SUPPORTED_OSREL and bump it to 900044.
This is actually a revision in the stable/9 branch released as 9.1. The localedef build requires xlocale from this period. Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc17
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 90c24ff..5ff5e1d 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -431,6 +431,9 @@ PACKAGE= kernel
#
BOOTSTRAPPING?= 0
+# Keep these in sync
+MINIMUM_SUPPORTED_OSREL?= 900044
+MINIMUM_SUPPORTED_REL?= 9.1
# Common environment for world related stages
CROSSENV+= MAKEOBJDIRPREFIX=${OBJTREE} \
@@ -1512,8 +1515,8 @@ _elftoolchain_libs= lib/libelf lib/libdwarf
.endif
legacy: .PHONY
-.if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0
- @echo "ERROR: Source upgrades from versions prior to 8.0 are not supported."; \
+.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0
+ @echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \
false
.endif
.for _tool in tools/build ${_elftoolchain_libs}
OpenPOWER on IntegriCloud