]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Set have_exec to y on cygwin so we have grub_mkrescue.
authorXuan Guo <nbdd0121>
Mon, 14 Aug 2017 14:27:53 +0000 (16:27 +0200)
committerVladimir Serbinenko <phcoder@gmail.com>
Mon, 14 Aug 2017 14:27:53 +0000 (16:27 +0200)
configure.ac

index 571f7a0b5aa4979218cb08033fe3a3e46c07f1a0..c7888e40f6695ee23a43fb98420d6cbcd3d86622 100644 (file)
@@ -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