svn commit: r274032 - stable/10/sys/boot/pc98/libpc98

Takahashi Yoshihiro nyan at FreeBSD.org
Mon Nov 3 11:01:13 UTC 2014


Author: nyan
Date: Mon Nov  3 11:01:12 2014
New Revision: 274032
URL: https://svnweb.freebsd.org/changeset/base/274032

Log:
  MFC: r272255
  
    Supress clang warning for FreeBSD printf %b and %D formats.

Modified:
  stable/10/sys/boot/pc98/libpc98/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/boot/pc98/libpc98/Makefile
==============================================================================
--- stable/10/sys/boot/pc98/libpc98/Makefile	Mon Nov  3 10:42:27 2014	(r274031)
+++ stable/10/sys/boot/pc98/libpc98/Makefile	Mon Nov  3 11:01:12 2014	(r274032)
@@ -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-stable-10 mailing list