This patch makes automake skip the function 'check-export-symbol' under Windows.
The main reason is that msys does not have an implementation of rev used by: https://github.com/openvswitch/ovs/blob/master/datapath/Makefile.am#L34 and can be seen on: https://ci.appveyor.com/project/blp/ovs/build/1.0.1851#L322 Signed-off-by: Alin Gabriel Serdean <aserd...@cloudbasesolutions.com> Co-authored-by: Ben Pfaff <b...@ovn.org> --- datapath/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/datapath/Makefile.am b/datapath/Makefile.am index 458fa5b..f2a85bc 100644 --- a/datapath/Makefile.am +++ b/datapath/Makefile.am @@ -30,6 +30,7 @@ print-build-modules: fi @echo "$(build_modules)" | tr '_' '-'; +if !WIN32 COMPAT_GET_FUNCTIONS := find $(top_srcdir)/datapath/linux/compat -name "*.h" \ -exec sed -n '/^[a-z][a-z]* \*\?[A-Za-z0-9_][A-Za-z0-9_]*([a-z]/p; /^struct [a-z0-9_][a-z0-9_]* \*\?[A-Za-z0-9_][A-Za-z0-9_]*([a-z]/p' {} \; | tr -d '*' | cut -d '(' -f1 | rev | cut -d ' ' -f1 | rev COMPAT_GET_EXPORTS := find $(top_srcdir)/datapath/linux/compat -name "*.c" \ @@ -56,3 +57,4 @@ check-export-symbol: done all-local: check-export-symbol +endif -- 1.9.5.msysgit.0 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev