changeset 4796:8fd91da9df90

configure.ac: use msys2 by default.
author John W. Eaton <jwe@octave.org>
date Wed, 15 Aug 2018 17:03:29 -0400
parents f39017b331bf
children d4bf89da9080
files configure.ac
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Wed Aug 15 17:01:24 2018 -0400
+++ b/configure.ac	Wed Aug 15 17:03:29 2018 -0400
@@ -84,12 +84,12 @@
 AC_SUBST(USE_CCACHE)
 
 AC_ARG_WITH([msys2],
-  [AS_HELP_STRING([--with-msys2], [use msys2 in windows distribution (default: no)])],
+  [AS_HELP_STRING([--with-msys2], [use msys2 in windows distribution (default: yes)])],
   [case $withval in
      no) USE_MSYS2=no ;;
      yes) USE_MSYS2=yes ;;
-     *) AC_MSG_ERROR([bad value "$enableval" for --with-msys]) ;;
-   esac], [USE_MSYS2=no])
+     *) AC_MSG_ERROR([bad value "$enableval" for --with-msys2]) ;;
+   esac], [USE_MSYS2=yes])
 AC_SUBST(USE_MSYS2)
 
 AC_ARG_ENABLE([windows-64],