diff options
author | gad <gad@FreeBSD.org> | 2006-03-09 19:52:44 +0000 |
---|---|---|
committer | gad <gad@FreeBSD.org> | 2006-03-09 19:52:44 +0000 |
commit | 00873ac1070ef6b0a6af57866b112dbada398f32 (patch) | |
tree | 2f398678762ebb81b05d8cc1316ca541c9e0769c /usr.sbin | |
parent | c7c425a278ffe88a8e63ef02b42a99ab05b479b7 (diff) | |
download | FreeBSD-src-00873ac1070ef6b0a6af57866b112dbada398f32.zip FreeBSD-src-00873ac1070ef6b0a6af57866b112dbada398f32.tar.gz |
Rever the previous changes. It turns out that it perfectly correct
for a makefile to set 'NO_MAN=' when the makefile is for a program
that will not create a man page.
Based on reaction from: ru bde
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 71ffc09..361783e 100644 --- a/usr.sbin/lpr/filters.ru/koi2855/Makefile +++ b/usr.sbin/lpr/filters.ru/koi2855/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= koi2855 -MAN= +NO_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 98f7ffe..e410d9a 100644 --- a/usr.sbin/lpr/filters.ru/koi2alt/Makefile +++ b/usr.sbin/lpr/filters.ru/koi2alt/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= koi2alt -MAN= +NO_MAN= CFLAGS+= -I${.CURDIR}/../../common_source diff --git a/usr.sbin/lpr/filters/Makefile b/usr.sbin/lpr/filters/Makefile index f1bc586..b55b536 100644 --- a/usr.sbin/lpr/filters/Makefile +++ b/usr.sbin/lpr/filters/Makefile @@ -4,7 +4,7 @@ BINDIR= /usr/libexec/lpr PROG= lpf -MAN= +NO_MAN= CFLAGS+= -I${.CURDIR}/../common_source |