diff options
author | green <green@FreeBSD.org> | 2000-01-11 12:51:56 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 2000-01-11 12:51:56 +0000 |
commit | f5d02a1957881d57f3f5a4538f3611ce9b15ab0f (patch) | |
tree | 43bd08e302dff7e777547e419375dcdaeef36ebb /gnu/lib | |
parent | eda181946c0a405c5bca9488623ba6b6d8a6e79d (diff) | |
download | FreeBSD-src-f5d02a1957881d57f3f5a4538f3611ce9b15ab0f.zip FreeBSD-src-f5d02a1957881d57f3f5a4538f3611ce9b15ab0f.tar.gz |
This is the second half of unbreaking the world build. Add a -DNOHTML
corollary for -DNOINFO and -DNOMAN. I'll fix this properly (add
specific HTML doc magic) in the .mk files later; right now, just
unbreak the world.
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/libdialog/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/lib/libdialog/Makefile b/gnu/lib/libdialog/Makefile index 858b59d..bf90e22 100644 --- a/gnu/lib/libdialog/Makefile +++ b/gnu/lib/libdialog/Makefile @@ -24,11 +24,13 @@ beforeinstall: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/dialog.h \ ${DESTDIR}/usr/include +.if !defined(NOHTML) afterinstall: .for file in ${EXAMPLES} ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/TESTS/${file} ${DESTDIR}/usr/share/examples/libdialog .endfor +.endif MLINKS+=dialog.3 draw_shadow.3 dialog.3 draw_box.3 \ dialog.3 line_edit.3 dialog.3 strheight.3 \ |