svn commit: r51278 - head/share/mk

Wolfram Schneider wosch at FreeBSD.org
Sun Dec 10 12:47:02 UTC 2017


Author: wosch
Date: Sun Dec 10 12:47:00 2017
New Revision: 51278
URL: https://svnweb.freebsd.org/changeset/doc/51278

Log:
  Do not set NO_OBJ=YES in a Makefile because /usr/share/mk/bsd.obj.mk does a test
  if NO_OBJ is defined, but not about the value.
  
  Which means you cannot unset NO_OBJ on the command line or with env variable:
  
  $ make NO_OBJ=""
  
  or
  
  $ export NO_OBJ=""; make
  
  I still think that 'make obj' doesn't really work for the doc
  project. But for now, you have to disable it yourself on the command
  line or in your ~/.profile.
  
  This is a revert of r51065

Modified:
  head/share/mk/doc.project.mk

Modified: head/share/mk/doc.project.mk
==============================================================================
--- head/share/mk/doc.project.mk	Sun Dec 10 07:31:10 2017	(r51277)
+++ head/share/mk/doc.project.mk	Sun Dec 10 12:47:00 2017	(r51278)
@@ -58,7 +58,7 @@
 #
 
 # 'make obj' doesn't really work for the docs, disable it
-NO_OBJ?= YES
+#NO_OBJ?= YES
 
 # Document-specific defaults
 DOCFORMAT?=	docbook


More information about the svn-doc-all mailing list