diff options
author | ru <ru@FreeBSD.org> | 2005-02-27 19:13:41 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-02-27 19:13:41 +0000 |
commit | 142ea172ed6a1dd668c55b287842bb89bc5270b0 (patch) | |
tree | 2450249c79a4bfb590008a6dac7fab4ad0451633 /tools | |
parent | 3d8ba815287eb894cfbc8cee0ddddc3ceeb1fb4e (diff) | |
download | FreeBSD-src-142ea172ed6a1dd668c55b287842bb89bc5270b0.zip FreeBSD-src-142ea172ed6a1dd668c55b287842bb89bc5270b0.tar.gz |
Bootstrap gencat(1).
OK'ed by: phantom
Diffstat (limited to 'tools')
-rw-r--r-- | tools/build/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/build/Makefile b/tools/build/Makefile index 5b76f09..be1de32 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 |