From: Gurucharan Shetty Date: Fri, 15 Nov 2013 23:32:09 +0000 (-0800) Subject: configure.ac: Make autoconf in Mingw happy. X-Git-Tag: sliver-openvswitch-2.0.90-1~5^2~12 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=954d706e76bfed5f16b4a5106182919907b55c28 configure.ac: Make autoconf in Mingw happy. Autoconf version 2.68 in Mingw environment does not like the new lines in AC_CONFIG_FILES macro. Signed-off-by: Gurucharan Shetty Acked-by: Ben Pfaff --- diff --git a/configure.ac b/configure.ac index 54078337b..379f32e72 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])