summaryrefslogtreecommitdiff
path: root/lib/libcurses/doc
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-01-20 17:29:31 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-01-20 17:29:31 +0000
commit2993320f1d05659f7e2abcc6c94b49ca0057621f (patch)
tree9bac0c3cfcf443cddcbf8f8118e3f9fb02f6a157 /lib/libcurses/doc
parent28ab5cfc527a3e212d64650811f6df758dcaa2d5 (diff)
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/Makefile4
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; \