From owner-freebsd-ppc@FreeBSD.ORG Sat Jun 12 14:36:18 2010 Return-Path: Delivered-To: powerpc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 65D131065673; Sat, 12 Jun 2010 14:36:18 +0000 (UTC) (envelope-from andreast-list@fgznet.ch) Received: from smtp.fgznet.ch (mail.fgznet.ch [81.92.96.47]) by mx1.freebsd.org (Postfix) with ESMTP id D3CCD8FC08; Sat, 12 Jun 2010 14:36:17 +0000 (UTC) Received: from deuterium.andreas.nets (dhclient-91-190-8-131.flashcable.ch [91.190.8.131]) by smtp.fgznet.ch (8.13.8/8.13.8/Submit_SMTPAUTH) with ESMTP id o5CDvxfs043114; Sat, 12 Jun 2010 15:58:00 +0200 (CEST) (envelope-from andreast-list@fgznet.ch) Message-ID: <4C139267.2020001@fgznet.ch> Date: Sat, 12 Jun 2010 15:57:59 +0200 From: Andreas Tobler User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.9) Gecko/20100317 Lightning/1.0b1 Thunderbird/3.0.4 MIME-Version: 1.0 To: FreeBSD Tinderbox References: <201006121059.o5CAxHlF010732@freebsd-current.sentex.ca> In-Reply-To: <201006121059.o5CAxHlF010732@freebsd-current.sentex.ca> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.64 on 81.92.96.47 Cc: powerpc@freebsd.org, current@freebsd.org Subject: Re: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jun 2010 14:36:18 -0000 On 12.06.10 12:59, FreeBSD Tinderbox wrote: > TB --- 2010-06-12 09:19:14 - tinderbox 2.6 running on freebsd-current.sentex.ca > TB --- 2010-06-12 09:19:14 - starting HEAD tinderbox run for powerpc/powerpc > TB --- 2010-06-12 09:19:15 - cleaning the object tree > TB --- 2010-06-12 09:19:27 - cvsupping the source tree > TB --- 2010-06-12 09:19:27 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile > TB --- 2010-06-12 09:19:57 - building world > TB --- 2010-06-12 09:19:57 - MAKEOBJDIRPREFIX=/obj > TB --- 2010-06-12 09:19:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2010-06-12 09:19:57 - TARGET=powerpc > TB --- 2010-06-12 09:19:57 - TARGET_ARCH=powerpc > TB --- 2010-06-12 09:19:57 - TZ=UTC > TB --- 2010-06-12 09:19:57 - __MAKE_CONF=/dev/null > TB --- 2010-06-12 09:19:57 - cd /src > TB --- 2010-06-12 09:19:57 - /usr/bin/make -B buildworld >>>> World build started on Sat Jun 12 09:19:57 UTC 2010 >>>> Rebuilding the temporary build tree >>>> stage 1.1: legacy release compatibility shims >>>> stage 1.2: bootstrap tools >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3: cross tools >>>> stage 4.1: building includes >>>> stage 4.2: building libraries >>>> stage 4.3: make dependencies >>>> stage 4.4: building everything > [...] > cc -O2 -pipe -DUSE_GZIP=1 -fno-strict-aliasing -I/src/usr.sbin/sysinstall/../../gnu/lib/libdialog -I. -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/sysinstall/index.c > cc -O2 -pipe -DUSE_GZIP=1 -fno-strict-aliasing -I/src/usr.sbin/sysinstall/../../gnu/lib/libdialog -I. -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/sysinstall/install.c > cc1: warnings being treated as errors > /src/usr.sbin/sysinstall/install.c: In function 'installStandard': > /src/usr.sbin/sysinstall/install.c:632: warning: unused variable 'devs' > /src/usr.sbin/sysinstall/install.c:631: warning: unused variable 'tries' > /src/usr.sbin/sysinstall/install.c: In function 'installFixupBase': > /src/usr.sbin/sysinstall/install.c:877: warning: unused variable 'fp' > *** Error code 1 Index: install.c =================================================================== --- install.c (revision 209106) +++ install.c (working copy) @@ -874,7 +874,9 @@ int installFixupBase(dialogMenuItem *self) { +#if defined(__i386__) || defined(__amd64__) FILE *fp; +#endif #ifdef __ia64__ const char *efi_mntpt; #endif Gruss, Andreas