Autoconf version 2.68 in Mingw environment does not like the new lines in AC_CONFIG_FILES macro.
Signed-off-by: Gurucharan Shetty <gshe...@nicira.com> --- configure.ac | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index 5407833..379f32e 100644 --- a/configure.ac +++ b/configure.ac @@ -116,12 +116,12 @@ AC_ARG_VAR(KARCH, [Kernel Architecture String]) AC_SUBST(KARCH) OVS_CHECK_LINUX -AC_CONFIG_FILES([Makefile -datapath/Makefile -datapath/linux/Kbuild -datapath/linux/Makefile -datapath/linux/Makefile.main -tests/atlocal]) +AC_CONFIG_FILES(Makefile) +AC_CONFIG_FILES(datapath/Makefile) +AC_CONFIG_FILES(datapath/linux/Kbuild) +AC_CONFIG_FILES(datapath/linux/Makefile) +AC_CONFIG_FILES(datapath/linux/Makefile.main) +AC_CONFIG_FILES(tests/atlocal) dnl This makes sure that include/openflow gets created in the build directory. AC_CONFIG_COMMANDS([include/openflow/openflow.h.stamp]) -- 1.7.9.5 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev