X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile.am;fp=Makefile.am;h=adb901bfaafa267c594d68f5504238d22dd1dd0b;hb=0a407cd6f2129793940bfbd42dc39fe97e93e14b;hp=135e58f9a800c3412a6df4531045e42803107d42;hpb=ac60863f78e412004c5b69f5a64a49bc6f0bc46d;p=sliver-openvswitch.git diff --git a/Makefile.am b/Makefile.am index 135e58f9a..adb901bfa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -196,6 +196,19 @@ config-h-check: fi .PHONY: config-h-check +# Check for printf() type modifiers that MSVC doesn't support. +ALL_LOCAL += printf-check +printf-check: + @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \ + git --no-pager grep -n -E -e '%[-+ #0-9.*]*([ztj]|hh)' --and --not -e 'ovs_scan' `git ls-files $(srcdir) | grep '\.[ch]$$'`; \ + then \ + echo "See above for list of violations of the rule that"; \ + echo "'z', 't', 'j', 'hh' printf() type modifiers are"; \ + echo "forbidden. See CodingStyle for replacements."; \ + exit 1; \ + fi +.PHONY: printf-check + # Check that certain data structures are always declared "static". ALL_LOCAL += static-check static-check: