svn commit: r325568 - head

Bryan Drewery bdrewery at FreeBSD.org
Wed Nov 8 23:41:28 UTC 2017


Author: bdrewery
Date: Wed Nov  8 23:41:27 2017
New Revision: 325568
URL: https://svnweb.freebsd.org/changeset/base/325568

Log:
  universe: Fix creating LINT files with AUTO_OBJ.
  
  These are expected to be created in .CURDIR.
  
  Reported by:	kib
  Sponsored by:	Dell EMC Isilon

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Wed Nov  8 23:32:56 2017	(r325567)
+++ head/Makefile	Wed Nov  8 23:41:27 2017	(r325568)
@@ -553,7 +553,8 @@ universe_${target}_kernels: universe_${target}_worlds 
 universe_${target}_kernels: universe_${target}_prologue .MAKE .PHONY
 .if exists(${KERNSRCDIR}/${target}/conf/NOTES)
 	@(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
-	    ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
+	    ${SUB_MAKE} -DNO_OBJ LINT \
+	    > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
 	    (echo "${target} 'make LINT' failed," \
 	    "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
 .endif


More information about the svn-src-head mailing list