From abe150c9de6a096b14b6d623c5be49b19afe92b2 Mon Sep 17 00:00:00 2001 From: Timo Rothenpieler Date: Sat, 12 Jun 2021 14:29:55 +0200 Subject: [PATCH] configure: msys also has .exe suffix --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index dbe66bbc4c..7886708f28 100755 --- a/configure +++ b/configure @@ -4417,7 +4417,7 @@ fi exesuf() { case $1 in - mingw32*|mingw64*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;; + mingw32*|mingw64*|msys*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;; esac }