From owner-svn-src-head@FreeBSD.ORG Sat Dec 15 21:57:08 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CDA3F8A7; Sat, 15 Dec 2012 21:57:08 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-da0-f54.google.com (mail-da0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 880728FC0C; Sat, 15 Dec 2012 21:57:08 +0000 (UTC) Received: by mail-da0-f54.google.com with SMTP id n2so1883004dad.13 for ; Sat, 15 Dec 2012 13:57:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer; bh=lO9DI04kbGziBm3VuXj2qkYOgldWx7ZNnkYx/m2mlOU=; b=dxwlefzKul/5xC2MItISXwjMJ5PG/BX3s6/VxMGkq367gKS0myiAfR9AMfK33DNuag xk2a8razpkXjkGN+46sBpjZDl0iWOVdbUsSWfyLIPXLKTQQjmFTPCGARKuIgCjKuvEz5 otPeCJQdqdRbn6Ant4wEDE+giEGcchCCcCCC8wW1SZ8B+MdQfzFC3VJ1yYeqxNyFCLwM FBbaXLLf7Z7pRiKj9SaZw9dx71iv2vifpiWXGIpvFXwF0oXKUOmhbg0gKepPL0I9hVSK +L0UkKZwrfdVikoHycxMRCJqwluh9O7LzO9FR+ECWRtXDoloJkgO3QghLNf5mB6Bqe0o 0kZQ== Received: by 10.68.225.201 with SMTP id rm9mr28580498pbc.124.1355608628075; Sat, 15 Dec 2012 13:57:08 -0800 (PST) Received: from [192.168.20.11] (c-24-19-191-56.hsd1.wa.comcast.net. [24.19.191.56]) by mx.google.com with ESMTPS id rk6sm5293887pbc.20.2012.12.15.13.57.03 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 15 Dec 2012 13:57:07 -0800 (PST) Subject: Re: svn commit: r244278 - head/sys/boot/arm/uboot Mime-Version: 1.0 (Apple Message framework v1283) Content-Type: text/plain; charset=us-ascii From: Garrett Cooper In-Reply-To: <201212152147.qBFLl6f1043013@svn.freebsd.org> Date: Sat, 15 Dec 2012 13:57:02 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: References: <201212152147.qBFLl6f1043013@svn.freebsd.org> To: Andrew Turner X-Mailer: Apple Mail (2.1283) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 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, 15 Dec 2012 21:57:08 -0000 On Dec 15, 2012, at 1:47 PM, Andrew Turner wrote: > Author: andrew > Date: Sat Dec 15 21:47:05 2012 > New Revision: 244278 > URL: http://svnweb.freebsd.org/changeset/base/244278 >=20 > Log: > Ignore a warning in ubldr where clang doesn't understand the %D = printf > specifier from libstand. >=20 > Modified: > head/sys/boot/arm/uboot/Makefile >=20 > Modified: head/sys/boot/arm/uboot/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/sys/boot/arm/uboot/Makefile Sat Dec 15 21:33:12 2012 = (r244277) > +++ head/sys/boot/arm/uboot/Makefile Sat Dec 15 21:47:05 2012 = (r244278) > @@ -109,6 +109,9 @@ CFLAGS+=3D -I${.OBJDIR}/../../uboot/lib > # where to get libstand from > CFLAGS+=3D -I${.CURDIR}/../../../../lib/libstand/ >=20 > +# clang doesn't understand %D as a specifier to printf > +NO_WERROR.clang=3D > + > DPADD=3D ${LIBFICL} ${LIBUBOOT} ${LIBFDT} ${LIBSTAND} > LDADD=3D ${LIBFICL} ${LIBUBOOT} ${LIBFDT} -lstand Why not fix it similar to how I fixed libi386/pxe.c on my git = branch ( = https://github.com/yaneurabeya/freebsd/commit/709c2b0a47ec887f8df3a886d318= c309a0659bf6 )? Thanks, -Garrett=