aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2023-01-21 12:31:53 -0800
committerTheodore Ts'o <tytso@mit.edu>2023-01-27 12:06:29 -0500
commit52fc14ffdc6b2c1d55ff258002de62d2f568a5d1 (patch)
treeace0698f5be1a431d5aec9f8e9f5c130e237d5ff
parentffa6de1e3da4216a2ed6ec2890e16b22dc2ca40f (diff)
downloade2fsprogs-52fc14ffdc6b2c1d55ff258002de62d2f568a5d1.tar.gz
configure.ac: only use Windows I/O manager on native Windows
Cygwin and MSYS2 are UNIX-compatible platforms on top of Windows, so they should use the UNIX I/O manager, not the Windows I/O manager. (Note that "cygwin" was misspelled as "cigwin", so the code did not have the intended effect anyway.) Fixes: d1d44c146a5e ("ext2fs: compile the io implementation according to os") Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4ece83e9b..af5699296 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1854,7 +1854,7 @@ dnl Adjust the compiled files if we are on windows vs everywhere else
dnl
OS_IO_FILE=""
[case "$host_os" in
- cigwin*|mingw*|msys*)
+ mingw*)
OS_IO_FILE=windows_io
;;
*)