Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Apr 2014 17:54:36 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r264154 - in head: lib/libproc lib/libproc/test/t1-bkpt lib/libproc/test/t2-name2map lib/libproc/test/t3-name2sym share/mk
Message-ID:  <201404051754.s35HsaSq007498@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Sat Apr  5 17:54:36 2014
New Revision: 264154
URL: http://svnweb.freebsd.org/changeset/base/264154

Log:
  The proper way to request no man pages currently is NO_MAN=xxx. Use it
  in preference to the user WITHOUT_MAN knob, which should never be set
  in normal src Makefiles.

Modified:
  head/lib/libproc/Makefile
  head/lib/libproc/test/t1-bkpt/Makefile
  head/lib/libproc/test/t2-name2map/Makefile
  head/lib/libproc/test/t3-name2sym/Makefile
  head/share/mk/bsd.test.mk

Modified: head/lib/libproc/Makefile
==============================================================================
--- head/lib/libproc/Makefile	Sat Apr  5 17:53:59 2014	(r264153)
+++ head/lib/libproc/Makefile	Sat Apr  5 17:54:36 2014	(r264154)
@@ -25,6 +25,6 @@ DPADD+=		${LIBSTDCPLUSPLUS}
 
 SHLIB_MAJOR=	2
 
-WITHOUT_MAN=
+NO_MAN=
 
 .include <bsd.lib.mk>

Modified: head/lib/libproc/test/t1-bkpt/Makefile
==============================================================================
--- head/lib/libproc/test/t1-bkpt/Makefile	Sat Apr  5 17:53:59 2014	(r264153)
+++ head/lib/libproc/test/t1-bkpt/Makefile	Sat Apr  5 17:54:36 2014	(r264154)
@@ -7,6 +7,6 @@ SRCS=	t1-bkpt.c
 LDADD=	-lproc -lelf -lrtld_db -lutil
 DPADD=	${LIBPROC} ${LIBELF}
 
-WITHOUT_MAN=
+NO_MAN=
 
 .include <bsd.prog.mk>

Modified: head/lib/libproc/test/t2-name2map/Makefile
==============================================================================
--- head/lib/libproc/test/t2-name2map/Makefile	Sat Apr  5 17:53:59 2014	(r264153)
+++ head/lib/libproc/test/t2-name2map/Makefile	Sat Apr  5 17:54:36 2014	(r264154)
@@ -7,6 +7,6 @@ SRCS=	t2-name2map.c
 LDADD=	-lproc -lelf -lrtld_db -lutil
 DPADD=	${LIBPROC} ${LIBELF}
 
-WITHOUT_MAN=
+NO_MAN=
 
 .include <bsd.prog.mk>

Modified: head/lib/libproc/test/t3-name2sym/Makefile
==============================================================================
--- head/lib/libproc/test/t3-name2sym/Makefile	Sat Apr  5 17:53:59 2014	(r264153)
+++ head/lib/libproc/test/t3-name2sym/Makefile	Sat Apr  5 17:54:36 2014	(r264154)
@@ -7,6 +7,6 @@ SRCS=	t3-name2sym.c
 LDADD=	-lproc -lelf -lrtld_db -lutil
 DPADD=	${LIBPROC} ${LIBELF}
 
-WITHOUT_MAN=
+NO_MAN=
 
 .include <bsd.prog.mk>

Modified: head/share/mk/bsd.test.mk
==============================================================================
--- head/share/mk/bsd.test.mk	Sat Apr  5 17:53:59 2014	(r264153)
+++ head/share/mk/bsd.test.mk	Sat Apr  5 17:54:36 2014	(r264154)
@@ -51,8 +51,8 @@ SUBDIR+= ${TESTS_SUBDIRS}
 
 # it is rare for test cases to have man pages
 .if !defined(MAN)
-WITHOUT_MAN=yes
-.export WITHOUT_MAN
+NO_MAN=yes
+.export NO_MAN
 .endif
 
 # tell progs.mk we might want to install things



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404051754.s35HsaSq007498>