diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-12-21 08:47:35 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-12-21 08:47:35 +0000 |
commit | e653b48c80fb85b2a10372d664a4b55dbdc51dae (patch) | |
tree | 7f8ff4b9f5ceced931324bf379fadaf03c3f07ea /share/mk/bsd.man.mk | |
parent | d626a8a238996d787428b43e5398f512cfd0aa94 (diff) |
Start the dreaded NOFOO -> NO_FOO conversion.
OK'ed by: core
Notes
Notes:
svn path=/head/; revision=139103
Diffstat (limited to 'share/mk/bsd.man.mk')
-rw-r--r-- | share/mk/bsd.man.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk index 4a06c583ec1c..e10efff72850 100644 --- a/share/mk/bsd.man.mk +++ b/share/mk/bsd.man.mk @@ -30,7 +30,7 @@ # second, and there may be multiple pairs. The files # are hard-linked. # -# NOMANCOMPRESS If you do not want unformatted manual pages to be +# NO_MANCOMPRESS If you do not want unformatted manual pages to be # compressed when they are installed. [not set] # # NOMLINKS If you do not want install manual page links. [not set] @@ -77,10 +77,10 @@ MAN+= ${MAN${sect}} _manpages: all-man: _manpages -.if defined(NOMANCOMPRESS) +.if defined(NO_MANCOMPRESS) # Make special arrangements to filter to a temporary file at build time -# for NOMANCOMPRESS. +# for NO_MANCOMPRESS. .if defined(MANFILTER) FILTEXTENSION= .filt .else @@ -162,7 +162,7 @@ maninstall: _maninstall _maninstall: .if defined(MAN) && !empty(MAN) _maninstall: ${MAN} -.if defined(NOMANCOMPRESS) +.if defined(NO_MANCOMPRESS) .if defined(MANFILTER) .for page in ${MAN} ${MINSTALL} ${page:T:S/$/${FILTEXTENSION}/g} \ |