svn commit: r287978 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Fri Sep 18 23:25:44 UTC 2015


Author: bdrewery
Date: Fri Sep 18 23:25:43 2015
New Revision: 287978
URL: https://svnweb.freebsd.org/changeset/base/287978

Log:
  Fix LIBRARIES_ONLY
  
  It was erroring: make: don't know how to make _manpages. Stop
  
  Sponsored by:	EMC / Isilon Storage Division
  MFC after:	1 week

Modified:
  head/share/mk/bsd.lib.mk

Modified: head/share/mk/bsd.lib.mk
==============================================================================
--- head/share/mk/bsd.lib.mk	Fri Sep 18 23:12:38 2015	(r287977)
+++ head/share/mk/bsd.lib.mk	Fri Sep 18 23:25:43 2015	(r287978)
@@ -294,7 +294,7 @@ all:
 .else
 all: ${_LIBS}
 
-.if ${MK_MAN} != "no"
+.if ${MK_MAN} != "no" && !defined(LIBRARIES_ONLY)
 all: _manpages
 .endif
 .endif


More information about the svn-src-head mailing list