summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-03-19 19:05:05 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-03-20 20:21:20 +0900
commit573655dec823abc934388ef68012cf1e2d047c8d (patch)
tree22ae66029103ce70698d6496e633ff018cff5311
parent96206446b5b46cf36aba271c32ad5910d4e934aa (diff)
downloaddefinitions-573655dec823abc934388ef68012cf1e2d047c8d.tar.gz
mesa.morph: Make the conditional configure apply to all arm arches
Before we were only specifically casing armv7lhf, use the same configuration for arm* instead, this causes the mesa build to pass on armv5l
-rw-r--r--strata/mesa-common/mesa.morph2
1 files changed, 1 insertions, 1 deletions
diff --git a/strata/mesa-common/mesa.morph b/strata/mesa-common/mesa.morph
index ebcf0a78..41a962b4 100644
--- a/strata/mesa-common/mesa.morph
+++ b/strata/mesa-common/mesa.morph
@@ -5,7 +5,7 @@ configure-commands:
- |
cpu=$(echo $TARGET | cut -d '-' -f 1)
case "$cpu" in
- armv7lhf)
+ arm*)
DRIDRIVERS=no
GALLIUMDRIVERS=nouveau,freedreno,svga,swrast,vc4
;;