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/regression/tls | |
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/regression/tls')
-rw-r--r-- | tools/regression/tls/ttls1/Makefile | 2 | ||||
-rw-r--r-- | tools/regression/tls/ttls2/Makefile | 2 | ||||
-rw-r--r-- | tools/regression/tls/ttls4/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/regression/tls/ttls1/Makefile b/tools/regression/tls/ttls1/Makefile index f4da549..a4535e0 100644 --- a/tools/regression/tls/ttls1/Makefile +++ b/tools/regression/tls/ttls1/Makefile @@ -3,7 +3,7 @@ PROG= ttls1 LDFLAGS+= -L../libxx -lxx -Wl,--rpath=${.OBJDIR}/../libxx LDFLAGS+= -L../libyy -lyy -Wl,--rpath=${.OBJDIR}/../libyy -NO_MAN= +MAN= DEBUG_FLAGS= -g .include <bsd.prog.mk> diff --git a/tools/regression/tls/ttls2/Makefile b/tools/regression/tls/ttls2/Makefile index 043b9ca..643040f 100644 --- a/tools/regression/tls/ttls2/Makefile +++ b/tools/regression/tls/ttls2/Makefile @@ -3,7 +3,7 @@ PROG= ttls2 DPADD= ${LIBPTHREAD} LDADD= -lpthread -NO_MAN= +MAN= DEBUG_FLAGS= -g .include <bsd.prog.mk> diff --git a/tools/regression/tls/ttls4/Makefile b/tools/regression/tls/ttls4/Makefile index 9a38a58..2d1e501 100644 --- a/tools/regression/tls/ttls4/Makefile +++ b/tools/regression/tls/ttls4/Makefile @@ -3,7 +3,7 @@ PROG= ttls4 DPADD= ${LIBPTHREAD} LDADD= -lpthread -NO_MAN= +MAN= DEBUG_FLAGS= -g .include <bsd.prog.mk> |