svn commit: r325568 - head

Rodney W. Grimes freebsd at pdx.rh.CN85.dnsmgr.net
Fri Nov 10 21:42:06 UTC 2017


[ Charset UTF-8 unsupported, converting... ]
> 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.
>   

Doesn't that fly in the face of a readonly src tree?

>   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
> 
> 

-- 
Rod Grimes                                                 rgrimes at freebsd.org


More information about the svn-src-head mailing list