svn commit: r324132 - stable/10

Rodney W. Grimes freebsd at pdx.rh.CN85.dnsmgr.net
Sun Oct 1 23:40:58 UTC 2017


> Author: ngie
> Date: Sat Sep 30 20:06:36 2017
> New Revision: 324132
> URL: https://svnweb.freebsd.org/changeset/base/324132
> 
> Log:
>   MFC r321845:
>   
>   Standardize on SRCTOP instead of .CURDIR-relative paths

It looks like the commit message and the commit do not
match, near this commit you also did merges of this change
to 11, is this just a commit message error?

Thanks,
> Modified:
>   stable/10/Makefile.inc1
> Directory Properties:
>   stable/10/   (props changed)
> 
> Modified: stable/10/Makefile.inc1
> ==============================================================================
> --- stable/10/Makefile.inc1	Sat Sep 30 19:54:30 2017	(r324131)
> +++ stable/10/Makefile.inc1	Sat Sep 30 20:06:36 2017	(r324132)
> @@ -1460,9 +1460,14 @@ _gcc_tools= gnu/usr.bin/cc/cc_tools
>  _rescue= rescue/rescue
>  .endif
>  
> +.if ${MK_TCSH} != "no"
> +_tcsh=bin/csh
> +.endif
> +
>  build-tools: .MAKE
> +
>  .for _tool in \
> -    bin/csh \
> +    ${_tcsh} \
>      bin/sh \
>      ${_rescue} \
>      ${LOCAL_TOOL_DIRS} \
> @@ -1580,7 +1585,7 @@ native-xtools: .PHONY
>      bin/cat \
>      bin/chmod \
>      bin/cp \
> -    bin/csh \
> +    ${_tcsh} \
>      bin/echo \
>      bin/expr \
>      bin/hostname \
> 
> 

-- 
Rod Grimes                                                 rgrimes at freebsd.org


More information about the svn-src-stable mailing list