diff options
author | ru <ru@FreeBSD.org> | 2002-05-15 16:29:45 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-05-15 16:29:45 +0000 |
commit | b860787a1895c30ea1f8f8c93c0b4578de259cf3 (patch) | |
tree | f025d67a22654d8ff2203628f971ff7d615e4142 /gnu/lib | |
parent | f5faaf6181d75212545b164cf70a61760c9edb2b (diff) | |
download | FreeBSD-src-b860787a1895c30ea1f8f8c93c0b4578de259cf3.zip FreeBSD-src-b860787a1895c30ea1f8f8c93c0b4578de259cf3.tar.gz |
Make sure to not yet build the GNU C++, but still allow
for the C++ progs to be built with e.g. an old compiler,
CXX=/usr/bin/c++, for the time being.
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/lib/Makefile b/gnu/lib/Makefile index 971934f..79f73dd 100644 --- a/gnu/lib/Makefile +++ b/gnu/lib/Makefile @@ -8,13 +8,11 @@ SUBDIR+= libgcc_r .endif .endif -.if ${CXX:T} == "c++" -NO_CXX= yes -.endif - +.if notyet .if !defined(NO_CXX) SUBDIR+= libsupc++ libstdc++ .endif +.endif .if !defined(NO_OBJC) SUBDIR+= libobjc |