diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2003-11-29 14:24:50 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2003-11-29 14:24:50 +0000 |
commit | 2b2bf877cd08a7a959c5a9b4401431c0ee17fd55 (patch) | |
tree | bb3f113f0558a0e0c2e6d1068ae83572c703a0ac | |
parent | 36ccf8ed0ef52b8617863c45e48130a7dad1c366 (diff) |
Don't bother trying to install stuff that doesn't exist.
-rw-r--r-- | gnu/usr.bin/gcc/Makefile.bsd-wrapper | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/gnu/usr.bin/gcc/Makefile.bsd-wrapper b/gnu/usr.bin/gcc/Makefile.bsd-wrapper index 27c2522b014..7cbed48e528 100644 --- a/gnu/usr.bin/gcc/Makefile.bsd-wrapper +++ b/gnu/usr.bin/gcc/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.38 2003/11/29 14:21:57 espie Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.39 2003/11/29 14:24:49 espie Exp $ #MAN= cccp.1 gcc.1 gcc-local.1 protoize.1 gcov.1 MAN= gcc.1 cpp.1 gcov.1 @@ -46,9 +46,6 @@ CLEANFILES= .gdbinit */.gdbinit *.info* \ genrtl.c genrtl.h fixinc.sh fixinc/Makefile \ po/Makefile po/Makefile.in po/POTFILES -CXX_HEADERS= ${.CURDIR}/gcc/cp/inc/typeinfo ${.CURDIR}/cp/inc/exception \ - ${.CURDIR}/gcc/cp/inc/new ${.CURDIR}/gcc/cp/inc/new.h - .if ${MACHINE} == "arc" || ${MACHINE} == "pmax" || ${MACHINE} == "wgrisc" M_ARCH= mipsel .elif ${MACHINE} == "hkmips" || ${MACHINE} == "sgi" @@ -87,14 +84,6 @@ config.status: gcc/Makefile.in gcc/configure gcc/c-parse.in ${LANGUAGES} --enable-cpp --disable-nls \ --with-gxx-include-dir=${GXX_INCDIR} ${GCCARCH} && touch config.status -includes: - @-for i in ${CXX_HEADERS}; do \ - j=`basename $$i` \ - cmp -s $$i ${DESTDIR}/${GXX_INCDIR}/$$j || \ - ${INSTALL} ${INSTALL_COPY} -m 444 $$i \ - ${DESTDIR}/${GXX_INCDIR}; \ - done - .ifdef NOMAN maninstall: @echo NOMAN is set |