aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2017-01-31 11:26:58 +0000
committerPeter Maydell <peter.maydell@linaro.org>2017-01-31 11:27:24 +0000
commitc7e1652ba4a4ead64e1afc44e6e816e5deccbcf4 (patch)
treeb6039fdadbceffe0942335211f4c6f022cc75f4d
parentc7064fe0cebbf4b0556b4d99d0bfa92ec920ecb6 (diff)
Makefile: relax wildcarding used to find GCC
An arm-linux-gnueabihf-gcc will work for building these tests, so relax the wildcard we use to find our default GCC to include that. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bc825a9..1eff777 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
PREFIX=/usr/bin
-GCC=$(firstword $(wildcard $(PREFIX)/arm*-eabi-gcc))
+GCC=$(firstword $(wildcard $(PREFIX)/arm-*eabi*-gcc))
OBJCOPY=$(firstword $(wildcard $(PREFIX)/arm*objcopy))
ifeq ($(GCC),)