From: Xuan Guo Date: Mon, 14 Aug 2017 14:27:53 +0000 (+0200) Subject: Set have_exec to y on cygwin so we have grub_mkrescue. X-Git-Tag: grub-2.04-rc1~241 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5435aaac3c8bfb14bb01a826ec747b783947c86f;p=thirdparty%2Fgrub.git Set have_exec to y on cygwin so we have grub_mkrescue. --- diff --git a/configure.ac b/configure.ac index 571f7a0b5..c7888e40f 100644 --- a/configure.ac +++ b/configure.ac @@ -204,7 +204,8 @@ case "$host_os" in esac case "$host_os" in - cygwin | windows* | mingw32*) have_exec=n ;; + cygwin) have_exec=y ;; + windows* | mingw32*) have_exec=n ;; aros*) have_exec=n ;; *) have_exec=y;; esac