diff options
author | pst <pst@FreeBSD.org> | 1994-09-10 07:15:59 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1994-09-10 07:15:59 +0000 |
commit | 790ad2fa59bccd376c5e64c1754824896f9ea0a9 (patch) | |
tree | 2253b16ad9c24a9968495a62cd12efef4cb59c12 /gnu | |
parent | 1da28de8c92ccedb74fb473dc45a575fea40a7bb (diff) | |
download | FreeBSD-src-790ad2fa59bccd376c5e64c1754824896f9ea0a9.zip FreeBSD-src-790ad2fa59bccd376c5e64c1754824896f9ea0a9.tar.gz |
libg++ include files being installed in /usr/include instead of
/usr/include/g++
Submitted by: pst
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libg++/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libg++/Makefile b/gnu/lib/libg++/Makefile index c759f22..1a48374 100644 --- a/gnu/lib/libg++/Makefile +++ b/gnu/lib/libg++/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.3 1994/09/09 22:22:36 wollman Exp $ # SRCS= vasprintf.c strerror.c strsignal.c @@ -13,6 +13,6 @@ CXXFLAGS+= -fexternal-templates -I${.CURDIR}/include beforeinstall: @-if [ ! -d ${DESTDIR}/usr/include/g++ ]; then mkdir ${DESTDIR}/usr/include/g++; chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/g++; chmod 755 ${DESTDIR}/usr/include/g++; fi - @(cd ${.CURDIR}/include ; for j in *.h; do cmp -s $$j ${DESTDIR}/usr/include/g++/$$j || install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j ${DESTDIR}/usr/include/$$j; done) + @(cd ${.CURDIR}/include ; for j in *.h; do cmp -s $$j ${DESTDIR}/usr/include/g++/$$j || install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j ${DESTDIR}/usr/include/g++/$$j; done) .include <bsd.lib.mk> |