diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-17 03:00:33 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-17 03:00:33 +0000 |
commit | 0e6872a9ecdc93bebf7a6049805d50892d2ef392 (patch) | |
tree | cd86f96ae72033f133c56fd90b08c12d6a2542c3 /gnu/usr.bin/cc | |
parent | 35c92f131c2137589b87461b838bfd20b5f27d00 (diff) | |
download | FreeBSD-src-0e6872a9ecdc93bebf7a6049805d50892d2ef392.zip FreeBSD-src-0e6872a9ecdc93bebf7a6049805d50892d2ef392.tar.gz |
Do not cut `docs' out of the build with NO_CXX.
There are no longer GNU C++ specific info files, and it was a bug with Gcc
2.95 that NO_CXX would cause the C and CPP info files to not be installed.
Diffstat (limited to 'gnu/usr.bin/cc')
-rw-r--r-- | gnu/usr.bin/cc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/Makefile b/gnu/usr.bin/cc/Makefile index c1565e6..2db6862 100644 --- a/gnu/usr.bin/cc/Makefile +++ b/gnu/usr.bin/cc/Makefile @@ -3,7 +3,7 @@ # The order of some of these are rather important. Some depend on previous # subdirs. -SUBDIR= cc_fbsd cc_tools cc_int cc cc1 cpp0 protoize tradcpp0 +SUBDIR= cc_fbsd cc_tools cc_int cc cc1 cpp0 protoize tradcpp0 doc .if !defined(NO_CPP) SUBDIR+= cpp @@ -11,7 +11,7 @@ SUBDIR+= cpp .if notyet .if !defined(NO_CXX) -SUBDIR+= cc1plus c++ c++filt doc +SUBDIR+= cc1plus c++ c++filt .if !defined(NO_COLLECT2) #SUBDIR+= collect2 .endif |