svn commit: r272255 - head/sys/boot/pc98/libpc98

Takahashi Yoshihiro nyan at FreeBSD.org
Sun Sep 28 13:13:19 UTC 2014


Author: nyan
Date: Sun Sep 28 13:13:18 2014
New Revision: 272255
URL: http://svnweb.freebsd.org/changeset/base/272255

Log:
  MFi386: r268974
  
    Supress clang warning for FreeBSD printf %b and %D formats.

Modified:
  head/sys/boot/pc98/libpc98/Makefile

Modified: head/sys/boot/pc98/libpc98/Makefile
==============================================================================
--- head/sys/boot/pc98/libpc98/Makefile	Sun Sep 28 12:55:13 2014	(r272254)
+++ head/sys/boot/pc98/libpc98/Makefile	Sun Sep 28 13:13:18 2014	(r272255)
@@ -44,4 +44,7 @@ CFLAGS+=	-I${.CURDIR}/../../common \
 # the location of libstand
 CFLAGS+=	-I${.CURDIR}/../../../../lib/libstand/
 
+# Suppress warning from clang for FreeBSD %b and %D formats
+CFLAGS+= -fformat-extensions
+
 .include <bsd.lib.mk>


More information about the svn-src-all mailing list