From owner-svn-src-head@freebsd.org Sat Jul 1 06:23:27 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 487C2D95196 for ; Sat, 1 Jul 2017 06:23:27 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: from asp.reflexion.net (outbound-mail-210-15.reflexion.net [208.70.210.15]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D87BD7B0A0 for ; Sat, 1 Jul 2017 06:23:26 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: (qmail 32745 invoked from network); 1 Jul 2017 06:23:24 -0000 Received: from unknown (HELO rtc-sm-01.app.dca.reflexion.local) (10.81.150.1) by 0 (rfx-qmail) with SMTP; 1 Jul 2017 06:23:24 -0000 Received: by rtc-sm-01.app.dca.reflexion.local (Reflexion email security v8.40.1) with SMTP; Sat, 01 Jul 2017 02:23:24 -0400 (EDT) Received: (qmail 14501 invoked from network); 1 Jul 2017 06:23:24 -0000 Received: from unknown (HELO iron2.pdx.net) (69.64.224.71) by 0 (rfx-qmail) with (AES256-SHA encrypted) SMTP; 1 Jul 2017 06:23:24 -0000 Received: from [192.168.1.114] (c-76-115-7-162.hsd1.or.comcast.net [76.115.7.162]) by iron2.pdx.net (Postfix) with ESMTPSA id D379FEC9004; Fri, 30 Jun 2017 23:23:23 -0700 (PDT) From: Mark Millard Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: Re: svn commit: r320502 - head/share/mk [problem is ITOOLS in Makefile.inc1 is missing head from its list --at least for powerpc64] Message-Id: Date: Fri, 30 Jun 2017 23:23:23 -0700 Cc: Steve Wills To: Ed Maste , svn-src-head@freebsd.org X-Mailer: Apple Mail (2.3273) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jul 2017 06:23:27 -0000 In /usr/src/Makefile.inc1 : ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ date echo egrep find grep id install ${_install-info} \ ln make mkdir mtree mv pwd_mkdb \ rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \ ${LOCAL_ITOOLS} does not list "head" as a tool and so is not put in place with the other tools. head is used in: Modified: head/share/mk/bsd.linker.mk . . . -_ld_version!= ${${ld}} --version 2>/dev/null | head -n 1 || echo none +_ld_version!= (${${ld}} --version || echo none) | head -n 1 . . . (either way) and so should be made available. In my environment I've just been using LOCAL_ITOOLS=head to avoid the issue for powerpc64 and its install32 activity. === Mark Millard markmi at dsl-only.net