diff options
author | Yuras Shumovich <shumovichy@gmail.com> | 2014-10-07 08:49:25 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-10-07 08:49:25 -0500 |
commit | 1f924208b3d85ed115c16f40ad9fc2f729fbb344 (patch) | |
tree | 9f4cef5f0df822a6e2e222dfb3cbcbff2b76c205 /libraries/base/configure.ac | |
parent | 1ec91133bbdfa018be3d203551818691f1c9e14d (diff) | |
download | haskell-1f924208b3d85ed115c16f40ad9fc2f729fbb344.tar.gz |
configure in base: add msys to windows check
Summary:
I'm building ghc on windows x86 under msys2, and found that libraries/base/configure isn't able to detect msys as windows platform.
I'm not 100% sure it is the right solution. Probably I have local misconfiguration somewhere. So feel free to reject.
Test Plan: not necessary
Reviewers: austin
Reviewed By: austin
Subscribers: simonmar, ezyang, carter, thomie
Projects: #ghc
Differential Revision: https://phabricator.haskell.org/D305
Diffstat (limited to 'libraries/base/configure.ac')
-rw-r--r-- | libraries/base/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/configure.ac b/libraries/base/configure.ac index 06e8a5d1ed..4835a2b925 100644 --- a/libraries/base/configure.ac +++ b/libraries/base/configure.ac @@ -16,7 +16,7 @@ AC_PROG_CC() AC_MSG_CHECKING(for WINDOWS platform) case $host in - *mingw32*|*mingw64*|*cygwin*) + *mingw32*|*mingw64*|*cygwin*|*msys*) WINDOWS=YES;; *) WINDOWS=NO;; |