diff options
author | phk <phk@FreeBSD.org> | 2005-08-06 20:23:13 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-08-06 20:23:13 +0000 |
commit | ff7f5068f0fef372ef6619ec2beca6360a89c209 (patch) | |
tree | 720e2a37944eacbb213ecd1a112439659704190b /gnu | |
parent | 6d02e606c3b3e5baa55bfa0dc420c86f1f09d339 (diff) | |
download | FreeBSD-src-ff7f5068f0fef372ef6619ec2beca6360a89c209.zip FreeBSD-src-ff7f5068f0fef372ef6619ec2beca6360a89c209.tar.gz |
Control rcs inclusion with NO_RCS insted of NO_TOOLCHAIN
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 12c7071..9a15f01 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -50,10 +50,12 @@ _texinfo= texinfo .if !defined(NO_TOOLCHAIN) _binutils= binutils _cc= cc -_rcs= rcs .if !defined(NO_GDB) _gdb= gdb .endif .endif +.if !defined(NO_RCS) +_rcs= rcs +.endif .include <bsd.subdir.mk> |