Date: Sun, 10 Dec 2017 12:47:00 +0000 (UTC) From: Wolfram Schneider <wosch@FreeBSD.org> To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r51278 - head/share/mk Message-ID: <201712101247.vBACl0OV022572@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712101247.vBACl0OV022572>