diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-10 00:50:43 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-10 00:50:43 +0000 |
commit | 53be32ddbcc82f7c3659b65303c7ea333c3eaeef (patch) | |
tree | 0b363cd3c417c626409564d4d6fd10463e3f41a7 /gnu/usr.bin | |
parent | 77caa62973280c4d146fd7d93f8daf6aacff7bb3 (diff) | |
download | FreeBSD-src-53be32ddbcc82f7c3659b65303c7ea333c3eaeef.zip FreeBSD-src-53be32ddbcc82f7c3659b65303c7ea333c3eaeef.tar.gz |
Turn off groff and gperf -- they will not compile with the in-tree Gcc 3.1.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index d1795b0..1aad223 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,7 +1,11 @@ # $FreeBSD$ -SUBDIR= awk bc binutils cpio dc dialog diff diff3 gperf \ - grep groff gzip man patch ptx rcs sdiff send-pr sort tar texinfo +SUBDIR= awk bc binutils cpio dc dialog diff diff3 \ + grep gzip man patch ptx rcs sdiff send-pr sort tar texinfo + +.if ${CXX:T} != "c++" +SUBDIR+=gperf groff +.endif .if !defined(NO_CVS) SUBDIR+=cvs |