diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-05-08 10:09:43 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-05-08 10:09:43 +0000 |
commit | 7701d700bc5fe131aabe1703ce8e852ab89a5d05 (patch) | |
tree | ebe0ff683abf0d74def98afca6bd19fbb8b74f9a /gnu/lib | |
parent | 619c68ca772fb6d675f34fb216ee24ec14d1d0bd (diff) |
Install libsupc++ header files as well.
ok robert@
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/libstdc++-v3/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/lib/libstdc++-v3/Makefile b/gnu/lib/libstdc++-v3/Makefile index a294e86b025..23a68accb4b 100644 --- a/gnu/lib/libstdc++-v3/Makefile +++ b/gnu/lib/libstdc++-v3/Makefile @@ -1,5 +1,5 @@ # $FreeBSD: src/gnu/lib/libstdc++/Makefile,v 1.63.2.1 2009/08/03 08:13:06 kensmith Exp $ -# $OpenBSD: Makefile,v 1.1 2010/05/07 16:08:07 robert Exp $ +# $OpenBSD: Makefile,v 1.2 2010/05/08 10:09:42 kettenis Exp $ GCCDIR= ${.CURDIR}/../../gcc/gcc GCCLIB= ${GCCDIR}/gcc @@ -93,10 +93,14 @@ atomicity.cc: ${ATOMICITY_H} ln -sf ${.ALLSRC} ${.TARGET} CLEANFILES+= atomicity.cc -INCSGROUPS= BITSHDRS BKWHDRS EXTHDRS BASEHDRS BASEXHDRS STDHDRS \ +INCSGROUPS= BITSHDRS BKWHDRS EXTHDRS BASEHDRS BASEXHDRS STDHDRS SUPHDRS \ TARGETHDRS THRHDRS DEBUGHDRS TR1HDRS PBHDRS0 PBHDRS1 CXXINCLUDEDIR= ${DESTDIR}/usr/include/g++ +SUPHDRS= cxxabi.h exception exception_defines.h new typeinfo +SUPHDRS:= ${SUPHDRS:S;^;${SRCDIR}/libsupc++/;} +SUPHDRSDIR= ${CXXINCLUDEDIR} + STDHDRS= std_algorithm.h std_bitset.h std_complex.h std_deque.h \ std_fstream.h std_functional.h std_iomanip.h std_ios.h \ std_iosfwd.h std_iostream.h std_istream.h std_iterator.h \ |