svn commit: r276311 - stable/10

Garrett Cooper ngie at FreeBSD.org
Sat Dec 27 17:20:25 UTC 2014


Author: ngie
Date: Sat Dec 27 17:20:24 2014
New Revision: 276311
URL: https://svnweb.freebsd.org/changeset/base/276311

Log:
  MFC r275867:
  
    Fix sporadic build failures due to race when running make installworld
    when strip gets replaced at install time by adding it to ITOOLS for the
    default usr.bin/xinstall STRIP_CMD
  
    This will fix the failure noted in this Jenkins build step:
    https://jenkins.freebsd.org/job/Build-UFS-image/688/
  
    This will also fix the issue reported by alfred@ dealing with installing on
    targets that differ from build hosts (e.g. installing on i386/i386 when built
    on amd64/amd64)
  
    Sponsored by: EMC / Isilon Storage Division

Modified:
  stable/10/Makefile.inc1
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/Makefile.inc1
==============================================================================
--- stable/10/Makefile.inc1	Sat Dec 27 17:14:53 2014	(r276310)
+++ stable/10/Makefile.inc1	Sat Dec 27 17:20:24 2014	(r276311)
@@ -779,7 +779,7 @@ _nmtree_itools=	nmtree
 ITOOLS=	[ awk cap_mkdb cat chflags chmod chown \
 	date echo egrep find grep id install ${_install-info} \
 	ln lockf make mkdir mtree ${_nmtree_itools} mv pwd_mkdb \
-	rm sed sh sysctl test true uname wc ${_zoneinfo} \
+	rm sed sh strip sysctl test true uname wc ${_zoneinfo} \
 	${LOCAL_ITOOLS}
 
 # Needed for share/man


More information about the svn-src-all mailing list