diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-05-27 23:22:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-05-27 23:22:26 +0000 |
commit | f7958869bff693f5e798131f089ff0eb2882b1c8 (patch) | |
tree | 36c9e07d762fda66193739447f356a05bfb6f6e2 | |
parent | 1bf8d5a32105d1d270ea4d247a736709edef3db5 (diff) |
missing DESTDIR
-rw-r--r-- | lib/libcurses++/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcurses++/Makefile b/lib/libcurses++/Makefile index 137fbad3538..f7e28596934 100644 --- a/lib/libcurses++/Makefile +++ b/lib/libcurses++/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 1999/05/27 23:21:20 millert Exp $ +# $OpenBSD: Makefile,v 1.3 1999/05/27 23:22:25 millert Exp $ # Uncomment this to enable tracing in libcurses #CURSESTRACE=-DTRACE @@ -12,7 +12,7 @@ CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../libcurses ${CURSESTRACE} includes: @test -d ${DESTDIR}/usr/include/g++ || \ - install -d -o root -g bin -m 755 /usr/include/g++ + install -d -o root -g bin -m 755 ${DESTDIR}/usr/include/g++ @for i in ${HEADERS}; do \ cmp -s ${DESTDIR}/usr/include/g++/$$i ${.CURDIR}/$$i || \ ${INSTALL} ${INSTALL_COPY} -m 444 -o $(BINOWN) -g $(BINGRP) \ |