diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-23 22:15:15 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-23 22:15:15 +0000 |
commit | ee395265e02f5a44e7cab0d29138e2ec1f2d1f4d (patch) | |
tree | ecaa830b0e9d2931ff14948caede940ca90afdbc /usr.bin | |
parent | c4917203208a60bc5c62fa9c0e3ec69ca7aecfbf (diff) |
respect NOMAN during install
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/less/Makefile.bsd-wrapper | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/less/Makefile.bsd-wrapper b/usr.bin/less/Makefile.bsd-wrapper index fffcf049087..7fb0c4d6cba 100644 --- a/usr.bin/less/Makefile.bsd-wrapper +++ b/usr.bin/less/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.10 1997/06/22 16:12:00 kstailey Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.11 1997/06/23 22:15:14 kstailey Exp $ # # less config @@ -54,6 +54,11 @@ gnu_build: ${MAKE} ${WCC} ${WCFLAGS} ${WLDFLAGS} LIBS=${LIBS} datadir=${DATADIR} \ LESS_HLP=${LESS_HLP} +.ifdef NOMAN +maninstall: + @echo NOMAN is set +.endif + install: gnu_install maninstall _SUBDIRUSE .if defined(LINKS) && !empty(LINKS) @set ${LINKS}; \ |