diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2005-02-27 19:13:41 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2005-02-27 19:13:41 +0000 |
commit | 8945135e1f94c4f15a1860b1d936c2617065c6aa (patch) | |
tree | 2450249c79a4bfb590008a6dac7fab4ad0451633 | |
parent | d5bbad837266f5a0943ebb3e29449c5ba90b2ae2 (diff) | |
download | src-8945135e1f94c4f15a1860b1d936c2617065c6aa.tar.gz src-8945135e1f94c4f15a1860b1d936c2617065c6aa.zip |
Notes
-rw-r--r-- | Makefile.inc1 | 5 | ||||
-rw-r--r-- | sys/sys/param.h | 2 | ||||
-rw-r--r-- | tools/build/Makefile | 5 |
3 files changed, 11 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 877fa34b83ea..7099067d5708 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -775,6 +775,10 @@ _groff= gnu/usr.bin/groff/tmac _cap_mkdb= usr.bin/cap_mkdb .endif +.if ${BOOTSTRAPPING} < 600017 +_gencat= usr.bin/gencat +.endif + .if ${BOOTSTRAPPING} < 600016 _mklocale= usr.bin/mklocale .endif @@ -792,6 +796,7 @@ bootstrap-tools: gnu/usr.bin/texinfo \ ${_cap_mkdb} \ usr.bin/colldef \ + ${_gencat} \ usr.bin/lorder \ usr.bin/makewhatis \ ${_mklocale} \ diff --git a/sys/sys/param.h b/sys/sys/param.h index 9117d8ecf47a..48f9d904b140 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -57,7 +57,7 @@ * is created, otherwise 1. */ #undef __FreeBSD_version -#define __FreeBSD_version 600016 /* Master, propagated to newvers */ +#define __FreeBSD_version 600017 /* Master, propagated to newvers */ #ifndef LOCORE #include <sys/types.h> diff --git a/tools/build/Makefile b/tools/build/Makefile index 5b76f093cd5d..be1de32d75c2 100644 --- a/tools/build/Makefile +++ b/tools/build/Makefile @@ -14,6 +14,11 @@ BOOTSTRAPPING?= 0 INCS+= runefile.h .endif +# usr.bin/gencat needs <nl_types.h>. +.if ${BOOTSTRAPPING} < 600017 +INCS+= nl_types.h +.endif + .if empty(SRCS) SRCS= dummy.c .endif |