From owner-freebsd-embedded@FreeBSD.ORG Mon Aug 6 11:07:07 2012 Return-Path: Delivered-To: freebsd-embedded@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D3C71065680 for ; Mon, 6 Aug 2012 11:07:07 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D6D38FC0A for ; Mon, 6 Aug 2012 11:07:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q76B77iS021729 for ; Mon, 6 Aug 2012 11:07:07 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q76B76ER021727 for freebsd-embedded@FreeBSD.org; Mon, 6 Aug 2012 11:07:06 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 6 Aug 2012 11:07:06 GMT Message-Id: <201208061107.q76B76ER021727@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-embedded@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-embedded@FreeBSD.org X-BeenThere: freebsd-embedded@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Aug 2012 11:07:07 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c 2 problems total. From owner-freebsd-embedded@FreeBSD.ORG Sat Aug 11 19:52:32 2012 Return-Path: Delivered-To: freebsd-embedded@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A42151065674 for ; Sat, 11 Aug 2012 19:52:32 +0000 (UTC) (envelope-from freebsd@damnhippie.dyndns.org) Received: from qmta12.emeryville.ca.mail.comcast.net (qmta12.emeryville.ca.mail.comcast.net [76.96.27.227]) by mx1.freebsd.org (Postfix) with ESMTP id 83BA58FC0C for ; Sat, 11 Aug 2012 19:52:32 +0000 (UTC) Received: from omta11.emeryville.ca.mail.comcast.net ([76.96.30.36]) by qmta12.emeryville.ca.mail.comcast.net with comcast id lSVk1j0030mlR8UACXsYy4; Sat, 11 Aug 2012 19:52:32 +0000 Received: from damnhippie.dyndns.org ([24.8.232.202]) by omta11.emeryville.ca.mail.comcast.net with comcast id lXsX1j0034NgCEG8XXsXEr; Sat, 11 Aug 2012 19:52:32 +0000 Received: from [172.22.42.240] (revolution.hippie.lan [172.22.42.240]) by damnhippie.dyndns.org (8.14.3/8.14.3) with ESMTP id q7BJqTP4012346; Sat, 11 Aug 2012 13:52:29 -0600 (MDT) (envelope-from freebsd@damnhippie.dyndns.org) From: Ian Lepore To: freebsd-embedded@freebsd.org Content-Type: multipart/mixed; boundary="=-7VA5f/ryPr8cqD9TIUAX" Date: Sat, 11 Aug 2012 13:52:29 -0600 Message-ID: <1344714749.1186.15.camel@revolution.hippie.lan> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Cc: Subject: cross-build failure for kerberos libs during installworld X-BeenThere: freebsd-embedded@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Aug 2012 19:52:32 -0000 --=-7VA5f/ryPr8cqD9TIUAX Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I just ran into an installworld glitch while doing an arm cross-build: ===> kerberos5/lib/libasn1 (install) install -C -o root -g wheel -m 444 libasn1.a /local/build/staging/freebsd/dp10/nfsroot/usr/lib install -C -o root -g wheel -m 444 libasn1_p.a /local/build/staging/freebsd/dp10/nfsroot/usr/lib cmp -s krb5_asn1.hx krb5_asn1.h 2> /dev/null || cp krb5_asn1.hx krb5_asn1.h cmp: not found cp: not found [more of the same errors follow] It looks like it's caused by r233294 (import of new Heimdal), which added rules to the makefile that installs some components by using cmp and cp to install the file only if its contents changed. The attached patch is how I quickly worked around the problem. I'm not sure if this is the right way to fix it long term -- I'm not sure why the makefile is using cmp/cp instead of install -C for header files. -- Ian --=-7VA5f/ryPr8cqD9TIUAX Content-Type: text/x-patch; name="makeinc1.diff"; charset="us-ascii" Content-Description: Content-Disposition: inline; filename="makeinc1.diff" Content-Transfer-Encoding: 7bit diff -r 25742f1019fe Makefile.inc1 --- a/Makefile.inc1 Sat Aug 11 10:34:22 2012 -0600 +++ b/Makefile.inc1 Sat Aug 11 13:33:17 2012 -0600 @@ -620,7 +620,7 @@ installcheck_UGID: _zoneinfo= zic tzsetup .endif -ITOOLS= [ awk cap_mkdb cat chflags chmod chown \ +ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ date echo egrep find grep ${_install-info} \ ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl \ test true uname wc ${_zoneinfo} --=-7VA5f/ryPr8cqD9TIUAX--