From 535a47a032f59ac096343f9b8c690ff1359c73b5 Mon Sep 17 00:00:00 2001
From: Orgad Shaneh <orgads@gmail.com>
Date: Wed, 27 Dec 2017 20:25:12 +0200
Subject: [PATCH 1/5] Fix configure on MinGW

It currently fails with the following error:

configure: creating ./config.status
./config.status: line 565: syntax error near unexpected token `\"'
./config.status: line 565: `    "\") CONFIG_FILES="$CONFIG_FILES \" ;;'

Broke by c992c4d80f51540699f33fed067caf6b7c38df79.
---
 configure.ac | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 4710832..6f01b07 100644
--- a/configure.ac
+++ b/configure.ac
@@ -505,8 +505,7 @@ AS_IF([test "x$make_cv_load" = xno && test "x$user_load" = xyes],
 ])
 
 # Specify what files are to be created.
-AC_CONFIG_FILES([Makefile glob/Makefile po/Makefile.in config/Makefile \
-                 doc/Makefile tests/config-flags.pm])
+AC_CONFIG_FILES([Makefile glob/Makefile po/Makefile.in config/Makefile doc/Makefile tests/config-flags.pm])
 # We don't need this, since the standard automake output will do.
 #mk/Posix.mk
 
-- 
2.15.1.windows.2

