Date: Fri, 30 Jun 2017 23:23:23 -0700 From: Mark Millard <markmi@dsl-only.net> To: Ed Maste <emaste@freebsd.org>, svn-src-head@freebsd.org Cc: Steve Wills <swills@freebsd.org> 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: <A966F33E-928A-46E3-836E-C9BB0BFD136C@dsl-only.net>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?A966F33E-928A-46E3-836E-C9BB0BFD136C>
