diff options
author | ngie <ngie@FreeBSD.org> | 2014-12-31 23:25:37 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2014-12-31 23:25:37 +0000 |
commit | d4c625976a2fea5fc437c319a55efef1bcc29c2c (patch) | |
tree | 598489661071937f5a8c541a42e28c07b21b569b /tools/test | |
parent | 649535f73cbb860495bc6d26c156d95935fcb6fd (diff) | |
download | FreeBSD-src-d4c625976a2fea5fc437c319a55efef1bcc29c2c.zip FreeBSD-src-d4c625976a2fea5fc437c319a55efef1bcc29c2c.tar.gz |
MFC r264400,r265836:
r264400:
NO_MAN= has been deprecated in favor of MAN= for some time, go ahead
and finish the job. ncurses is now the only Makefile in the tree that
uses it since it wasn't a simple mechanical change, and will be
addressed in a future commit.
r265836:
Remove last two NO_MAN= in the tree. In both of these cases, MAN= is
what is needed.
Diffstat (limited to 'tools/test')
-rw-r--r-- | tools/test/auxinfo/Makefile | 2 | ||||
-rw-r--r-- | tools/test/iconv/gnu/Makefile | 2 | ||||
-rw-r--r-- | tools/test/iconv/posix/Makefile | 2 | ||||
-rw-r--r-- | tools/test/iconv/refgen/Makefile | 2 | ||||
-rw-r--r-- | tools/test/iconv/tablegen/Makefile | 2 | ||||
-rw-r--r-- | tools/test/malloc/Makefile | 2 | ||||
-rw-r--r-- | tools/test/netfibs/Makefile | 2 | ||||
-rw-r--r-- | tools/test/ppsapi/Makefile | 2 | ||||
-rw-r--r-- | tools/test/ptrace/Makefile | 2 | ||||
-rw-r--r-- | tools/test/upsdl/Makefile | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/tools/test/auxinfo/Makefile b/tools/test/auxinfo/Makefile index e6e5768..0e6d809 100644 --- a/tools/test/auxinfo/Makefile +++ b/tools/test/auxinfo/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= auxinfo -NO_MAN= +MAN= WARNS?= 6 .include <bsd.prog.mk> diff --git a/tools/test/iconv/gnu/Makefile b/tools/test/iconv/gnu/Makefile index f5fea7b..d52876e 100644 --- a/tools/test/iconv/gnu/Makefile +++ b/tools/test/iconv/gnu/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= gnu -NO_MAN= yes +MAN= WARNS?= 3 CFLAGS+= -L/usr/local/lib -I/usr/local/include diff --git a/tools/test/iconv/posix/Makefile b/tools/test/iconv/posix/Makefile index 0244779..8911424 100644 --- a/tools/test/iconv/posix/Makefile +++ b/tools/test/iconv/posix/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= posix -NO_MAN= yes +MAN= WARNS?= 6 diff --git a/tools/test/iconv/refgen/Makefile b/tools/test/iconv/refgen/Makefile index 59fb548..6ac2151 100644 --- a/tools/test/iconv/refgen/Makefile +++ b/tools/test/iconv/refgen/Makefile @@ -3,7 +3,7 @@ .PATH: ${.CURDIR}/../tablegen PROG= refgen -NO_MAN= yes +MAN= SRCS= tablegen.c WARNS?= 3 diff --git a/tools/test/iconv/tablegen/Makefile b/tools/test/iconv/tablegen/Makefile index 9605640..cdac44f 100644 --- a/tools/test/iconv/tablegen/Makefile +++ b/tools/test/iconv/tablegen/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= tablegen -NO_MAN= yes +MAN= WARNS?= 3 diff --git a/tools/test/malloc/Makefile b/tools/test/malloc/Makefile index 2f00c34..455dec3 100644 --- a/tools/test/malloc/Makefile +++ b/tools/test/malloc/Makefile @@ -3,7 +3,7 @@ PROG= malloc SRCS= main.c .PATH: ${.CURDIR}/../../../lib/libc/stdlib -NO_MAN= +MAN= WARNS?=6 test: malloc diff --git a/tools/test/netfibs/Makefile b/tools/test/netfibs/Makefile index 290f4f8..689d613 100644 --- a/tools/test/netfibs/Makefile +++ b/tools/test/netfibs/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= reflect -NO_MAN= +MAN= WARNS?= 6 .include <bsd.prog.mk> diff --git a/tools/test/ppsapi/Makefile b/tools/test/ppsapi/Makefile index b4f43ce..0474b99 100644 --- a/tools/test/ppsapi/Makefile +++ b/tools/test/ppsapi/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= ppsapitest -NO_MAN= +MAN= WARNS?= 5 diff --git a/tools/test/ptrace/Makefile b/tools/test/ptrace/Makefile index 681aee5..a11b0a1 100644 --- a/tools/test/ptrace/Makefile +++ b/tools/test/ptrace/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= scescx -NO_MAN= +MAN= WARNS?= 6 .include <bsd.prog.mk> diff --git a/tools/test/upsdl/Makefile b/tools/test/upsdl/Makefile index b45d5d8..448cb7a 100644 --- a/tools/test/upsdl/Makefile +++ b/tools/test/upsdl/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ PROG= upsdl -NO_MAN= +MAN= .include <bsd.prog.mk> |