[ovs-dev] [PATCH] travis: Break Mac OS build for format specifier warnings.

Ben Pfaff blp at ovn.org
Tue Mar 21 05:10:44 UTC 2017


Until now, the Travis build for Mac OS X has been configured to ignore
format specifier warnings.  These warnings have now been fixed, so this
commit changes such warnings to error.

Suggested-by: Daniele Di Proietto <diproiettod at ovn.org>
Signed-off-by: Ben Pfaff <blp at ovn.org>
---
 .travis/osx-build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis/osx-build.sh b/.travis/osx-build.sh
index 4db9c8d048a4..f11d7b9af5d6 100755
--- a/.travis/osx-build.sh
+++ b/.travis/osx-build.sh
@@ -2,7 +2,7 @@
 
 set -o errexit
 
-CFLAGS="-Werror -Wno-error=format $CFLAGS"
+CFLAGS="-Werror $CFLAGS"
 EXTRA_OPTS=""
 
 function configure_ovs()
-- 
2.10.2



More information about the dev mailing list