diff options
author | gad <gad@FreeBSD.org> | 2006-03-08 22:28:12 +0000 |
---|---|---|
committer | gad <gad@FreeBSD.org> | 2006-03-08 22:28:12 +0000 |
commit | 61d7961ffa46a8989f86fc128a86016855997114 (patch) | |
tree | 9d42e14780406008cad40707e40d91617e2cd8d3 /usr.sbin | |
parent | 74880d1ae07d936f2d7438a214eef4c207521125 (diff) | |
download | FreeBSD-src-61d7961ffa46a8989f86fc128a86016855997114.zip FreeBSD-src-61d7961ffa46a8989f86fc128a86016855997114.tar.gz |
Switch these makefiles to use 'MAN=' to indicate they will not generate
a man page, instead of 'NO_MAN='. 'NO_MAN=' is something users would
set, not something a makefile should be using.
Based on comments by: des
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/lpr/filters.ru/koi2855/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/lpr/filters.ru/koi2alt/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/lpr/filters/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/lpr/filters.ru/koi2855/Makefile b/usr.sbin/lpr/filters.ru/koi2855/Makefile index 361783e..71ffc09 100644 --- a/usr.sbin/lpr/filters.ru/koi2855/Makefile +++ b/usr.sbin/lpr/filters.ru/koi2855/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= koi2855 -NO_MAN= +MAN= CFLAGS+= -I${.CURDIR}/../../common_source diff --git a/usr.sbin/lpr/filters.ru/koi2alt/Makefile b/usr.sbin/lpr/filters.ru/koi2alt/Makefile index e410d9a..98f7ffe 100644 --- a/usr.sbin/lpr/filters.ru/koi2alt/Makefile +++ b/usr.sbin/lpr/filters.ru/koi2alt/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= koi2alt -NO_MAN= +MAN= CFLAGS+= -I${.CURDIR}/../../common_source diff --git a/usr.sbin/lpr/filters/Makefile b/usr.sbin/lpr/filters/Makefile index b55b536..f1bc586 100644 --- a/usr.sbin/lpr/filters/Makefile +++ b/usr.sbin/lpr/filters/Makefile @@ -4,7 +4,7 @@ BINDIR= /usr/libexec/lpr PROG= lpf -NO_MAN= +MAN= CFLAGS+= -I${.CURDIR}/../common_source |