diff options
author | emaste <emaste@FreeBSD.org> | 2016-01-22 21:33:27 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2016-01-22 21:33:27 +0000 |
commit | 9a3b34d7631b1ef522add470e0131f1a802f4968 (patch) | |
tree | 0f33e734d2126a2e2c6946d5831c249c355a07d0 | |
parent | 71b4e4e4e8ad84f87914063fed118d4413e3350b (diff) | |
download | FreeBSD-src-9a3b34d7631b1ef522add470e0131f1a802f4968.zip FreeBSD-src-9a3b34d7631b1ef522add470e0131f1a802f4968.tar.gz |
Use MAN= to specify that no man page is provided
NO_MAN is deprecated.
Reviewed by: imp
-rw-r--r-- | gnu/lib/libreadline/readline/Makefile | 2 | ||||
-rw-r--r-- | lib/libelftc/Makefile | 2 | ||||
-rw-r--r-- | sys/boot/usb/tools/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gnu/lib/libreadline/readline/Makefile b/gnu/lib/libreadline/readline/Makefile index 17c84ae..1947b3e 100644 --- a/gnu/lib/libreadline/readline/Makefile +++ b/gnu/lib/libreadline/readline/Makefile @@ -2,7 +2,7 @@ LIB= readline INTERNALLIB= yes -NO_MAN= yes +MAN= TILDESRC= tilde.c SRCS= readline.c vi_mode.c funmap.c keymaps.c parens.c search.c \ diff --git a/lib/libelftc/Makefile b/lib/libelftc/Makefile index ccae1a5..ed5c02a 100644 --- a/lib/libelftc/Makefile +++ b/lib/libelftc/Makefile @@ -25,6 +25,6 @@ SRCS= elftc_bfdtarget.c \ INCS= libelftc.h CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common -NO_MAN= yes +MAN= .include <bsd.lib.mk> diff --git a/sys/boot/usb/tools/Makefile b/sys/boot/usb/tools/Makefile index ae3259f..64cf28c 100644 --- a/sys/boot/usb/tools/Makefile +++ b/sys/boot/usb/tools/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= sysinit -NO_MAN= +MAN= CFLAGS+= -I${.CURDIR}/../../kshim |