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

_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to