From 555d5d143e7e8855c2c21a6b9594865b5feef9fb Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Sun, 10 Dec 2017 12:47:00 +0000 Subject: [PATCH] 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 --- share/mk/doc.project.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/doc.project.mk b/share/mk/doc.project.mk index b088ea58c0..ff69ef2b56 100644 --- a/share/mk/doc.project.mk +++ b/share/mk/doc.project.mk @@ -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