diff options
author | kan <kan@FreeBSD.org> | 2007-05-28 00:25:07 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2007-05-28 00:25:07 +0000 |
commit | 8343d42419e8b75046370cb88692d5f0a108d255 (patch) | |
tree | ffaa2445bdeebfd43e46c1550e7a9dd395f94a73 /gnu/usr.bin/cc/cc_tools | |
parent | 4fa4b7f8c603872dd4eb8a97f68f90387a827dc6 (diff) | |
download | FreeBSD-src-8343d42419e8b75046370cb88692d5f0a108d255.zip FreeBSD-src-8343d42419e8b75046370cb88692d5f0a108d255.tar.gz |
Fix compiles when user chooses to disable both ObjC and C++ support in
GCC.
Reported by: bz
Diffstat (limited to 'gnu/usr.bin/cc/cc_tools')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 38ac590..8366a8a 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -254,10 +254,11 @@ GENSRCS+= tm_p.h CLEANFILES+= cs-tm_p.h # gencheck -gencheck.h: +gencheck.h: ${TREE_DEF_FILES} .for F in ${TREE_DEF_FILES} echo "#include \"$F\"" >> ${.TARGET} .endfor + touch ${.TARGET} GENSRCS+= gencheck.h |