]> git.ipfire.org Git - thirdparty/git.git/blobdiff - detect-compiler
mingw: use lowercase includes for some Windows headers
[thirdparty/git.git] / detect-compiler
index 50087f567062c4ff858bd6cae83fb3c59a0e4038..a87650b71bb095d403993486a7f2af6967be4d55 100755 (executable)
@@ -17,7 +17,15 @@ get_family() {
 }
 
 get_version() {
-       get_version_line | sed 's/^.* version \([0-9][^ ]*\).*/\1/'
+       # A string that begins with a digit up to the next SP
+       ver=$(get_version_line | sed 's/^.* version \([0-9][^ ]*\).*/\1/')
+
+       # There are known -variant suffixes that do not affect the
+       # meaning of the main version number.  Strip them.
+       ver=${ver%-win32}
+       ver=${ver%-posix}
+
+       echo "$ver"
 }
 
 print_flags() {