diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2015-08-11 13:23:04 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2015-09-25 14:03:24 +0300 |
commit | c8988414e5b67b8ef2fe0ba7b1ccdd0ec73c60d3 (patch) | |
tree | 3dfe56c26f8ae93255b9127522176f2d1df3d152 /configure.ac | |
parent | Build: Support building of MSYS2 binaries. (diff) | |
download | xz-c8988414e5b67b8ef2fe0ba7b1ccdd0ec73c60d3.tar.xz |
Build: Minor Cygwin cleanup.
Some tests used "cygwin*" and some used "cygwin". I changed
them all to use "cygwin". Shouldn't affect anything in practice.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 13d3a8d9..53ae7bef 100644 --- a/configure.ac +++ b/configure.ac @@ -34,8 +34,8 @@ AC_CANONICAL_HOST # We do some special things on Windows (32-bit or 64-bit) builds. case $host_os in - mingw* | cygwin* | msys) is_w32=yes ;; - *) is_w32=no ;; + mingw* | cygwin | msys) is_w32=yes ;; + *) is_w32=no ;; esac AM_CONDITIONAL([COND_W32], [test "$is_w32" = yes]) @@ -289,7 +289,7 @@ if test "x$enable_assembler" = xyes; then case $host_os in # Darwin should work too but only if not creating universal # binaries. Solaris x86 could work too but I cannot test. - linux* | *bsd* | mingw* | cygwin* | msys | *djgpp*) + linux* | *bsd* | mingw* | cygwin | msys | *djgpp*) case $host_cpu in i?86) enable_assembler=x86 ;; x86_64) enable_assembler=x86_64 ;; |