diff options
author | 1999-01-20 17:29:30 +0000 | |
---|---|---|
committer | 1999-01-20 17:29:30 +0000 | |
commit | e011d6affee49b02dc4c13458f70c2685ad981e4 (patch) | |
tree | 714ae2b076e00d06c5bec8a90bba85d8296ca3f0 /lib/libcurses/doc | |
parent | setregs does not reset stack anymore (diff) | |
download | wireguard-openbsd-e011d6affee49b02dc4c13458f70c2685ad981e4.tar.xz wireguard-openbsd-e011d6affee49b02dc4c13458f70c2685ad981e4.zip |
make /usr/src/lib/libcurses/doc/ if it does not exist since the mtree gets done *after* make install in libs. should go away after 2.5 is released
Diffstat (limited to 'lib/libcurses/doc')
-rw-r--r-- | lib/libcurses/doc/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcurses/doc/Makefile b/lib/libcurses/doc/Makefile index 38c3bcc5a99..5d22907f5c6 100644 --- a/lib/libcurses/doc/Makefile +++ b/lib/libcurses/doc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1999/01/18 19:25:56 millert Exp $ +# $OpenBSD: Makefile,v 1.2 1999/01/20 17:29:30 millert Exp $ FILES= hackguide.html ncurses-intro.html @@ -6,6 +6,8 @@ all: @echo nothing to do install: + test -d ${DESTDIR}/usr/share/doc/html/curses || ${INSTALL} -d -m 755 \ + -o $(BINOWN) -g $(BINGRP) ${DESTDIR}/usr/share/doc/html/curses for f in ${FILES}; do \ ${INSTALL} ${INSTALL_COPY} -m 444 -o $(BINOWN) -g $(BINGRP) \ ${.CURDIR}/$$f ${DESTDIR}/usr/share/doc/html/curses/$$f; \ |