diff options
author | Emil Velikov <[email protected]> | 2017-01-18 13:54:03 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-02-10 11:47:24 +0000 |
commit | ce65cc1f1f648f17d9284e65f1ad69be647de3d3 (patch) | |
tree | 0b39827650f5ecc23578433151ac89004891e855 /configure.ac | |
parent | 4d8bb9cf8c8e8bd3185461760ca89e6021c0b8e0 (diff) |
configure.ac: disable enable_gallium_llvm in the !x86 case
Already implicitly handled throughout, but keep it clear and disable
gallium-llvm. This change should be a no-op.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Tobias Droste <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 00425690b26..1251b83c408 100644 --- a/configure.ac +++ b/configure.ac @@ -1731,6 +1731,7 @@ AC_ARG_ENABLE([gallium-llvm], if test "x$enable_gallium_llvm" = xauto; then case "$host_cpu" in i*86|x86_64|amd64) enable_gallium_llvm=yes;; + *) enable_gallium_llvm=no;; esac fi |