From 954d706e76bfed5f16b4a5106182919907b55c28 Mon Sep 17 00:00:00 2001 From: Gurucharan Shetty Date: Fri, 15 Nov 2013 15:32:09 -0800 Subject: [PATCH] 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 --- configure.ac | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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]) -- 2.47.0