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
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to