diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2017-09-28 11:04:32 +0800 |
---|---|---|
committer | Moritz Angermann <moritz.angermann@gmail.com> | 2017-09-29 09:35:05 +0800 |
commit | 464396d00450efb58330987ebac4735902ba0f01 (patch) | |
tree | e70de15e4b963fee9e0ae695a2d51c30de6604dd /aclocal.m4 | |
parent | 7aa000b625c677534c87da43de31c27a2b969183 (diff) | |
download | haskell-464396d00450efb58330987ebac4735902ba0f01.tar.gz |
Fix Raspberry Pi target name
Summary:
For some reson, the `*`, that was supposed to be in D4031
got lost in the diff.
Reviewers: bgamari, austin, hvr, dfeuer
Reviewed By: dfeuer
Subscribers: rwbarton, thomie, erikd
Differential Revision: https://phabricator.haskell.org/D4044
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index fb61e8d32e..b34f8985b4 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1907,7 +1907,7 @@ AC_DEFUN([GHC_LLVM_TARGET], [ # for the LLVM Target. Otherwise these would be # turned into just `-linux` and fail to be found # in the `llvm-targets` file. - *-android*|-gnueabi*) + *-android*|*-gnueabi*) GHC_CONVERT_VENDOR([$2],[llvm_target_vendor]) llvm_target_os="$3" ;; |