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-Url: https://iam.tj/gitweb/gitweb.cgi?p=grub.git;a=commitdiff_plain;h=5435aaac3c8bfb14bb01a826ec747b783947c86f 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