diff options
author | brooks <brooks@FreeBSD.org> | 2013-01-24 16:38:47 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2013-01-24 16:38:47 +0000 |
commit | 28f52e1e5a8f19f88ebe5d7325aa92d250abdcea (patch) | |
tree | ae41087ed3bcac22d1287ec4bb02eef67320ed63 /lib/ncurses/panel | |
parent | 97856149a1dfe152305e38969db5245fe52c909a (diff) | |
download | FreeBSD-src-28f52e1e5a8f19f88ebe5d7325aa92d250abdcea.zip FreeBSD-src-28f52e1e5a8f19f88ebe5d7325aa92d250abdcea.tar.gz |
Only install manpages and html documentation in the ncurses/*w (wchar)
builds so that it is only installed once. This is consistent with the
existing decision to only install headers in the that case.
Diffstat (limited to 'lib/ncurses/panel')
-rw-r--r-- | lib/ncurses/panel/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/ncurses/panel/Makefile b/lib/ncurses/panel/Makefile index 12b8b06..689586d 100644 --- a/lib/ncurses/panel/Makefile +++ b/lib/ncurses/panel/Makefile @@ -34,7 +34,6 @@ LDADD= -lncurses${LIB_SUFFIX} .if defined(ENABLE_WIDEC) INCS= panel.h -.endif # generate MAN .PATH: ${NCURSES_DIR}/man @@ -58,6 +57,9 @@ MLINKS= panel.3 bottom_panel.3 \ panel.3 show_panel.3 \ panel.3 top_panel.3 \ panel.3 update_panels.3 +.else +NO_MAN= +.endif .include <bsd.lib.mk> |