mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
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.
This commit is contained in:
parent
bcacd8ce7a
commit
cbc9e39bae
1 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,7 @@ AC_CANONICAL_HOST
|
||||||
|
|
||||||
# We do some special things on Windows (32-bit or 64-bit) builds.
|
# We do some special things on Windows (32-bit or 64-bit) builds.
|
||||||
case $host_os in
|
case $host_os in
|
||||||
mingw* | cygwin* | msys) is_w32=yes ;;
|
mingw* | cygwin | msys) is_w32=yes ;;
|
||||||
*) is_w32=no ;;
|
*) is_w32=no ;;
|
||||||
esac
|
esac
|
||||||
AM_CONDITIONAL([COND_W32], [test "$is_w32" = yes])
|
AM_CONDITIONAL([COND_W32], [test "$is_w32" = yes])
|
||||||
|
@ -289,7 +289,7 @@ if test "x$enable_assembler" = xyes; then
|
||||||
case $host_os in
|
case $host_os in
|
||||||
# Darwin should work too but only if not creating universal
|
# Darwin should work too but only if not creating universal
|
||||||
# binaries. Solaris x86 could work too but I cannot test.
|
# 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
|
case $host_cpu in
|
||||||
i?86) enable_assembler=x86 ;;
|
i?86) enable_assembler=x86 ;;
|
||||||
x86_64) enable_assembler=x86_64 ;;
|
x86_64) enable_assembler=x86_64 ;;
|
||||||
|
|
Loading…
Reference in a new issue