summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-11-27 14:28:14 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-11-27 14:38:44 +0100
commite4be4fda77d55b6c06a3b65770728b4a155b38a0 (patch)
tree667fc56e947bce19af1ed4e299c2c42d34b53973
parentqemu: work around build bug with powerpc64le (diff)
downloadwireguard-linux-compat-e4be4fda77d55b6c06a3b65770728b4a155b38a0.tar.xz
wireguard-linux-compat-e4be4fda77d55b6c06a3b65770728b4a155b38a0.zip
qemu: respect PATH when finding CBUILD
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--src/tests/qemu/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/qemu/Makefile b/src/tests/qemu/Makefile
index 02e098a..3755d01 100644
--- a/src/tests/qemu/Makefile
+++ b/src/tests/qemu/Makefile
@@ -6,7 +6,7 @@ PWD := $(shell pwd)
CHOST := $(shell gcc -dumpmachine)
ifneq (,$(ARCH))
-CBUILD := $(subst -gcc,,$(lastword $(subst /, ,$(firstword $(filter-out android,$(wildcard /usr/bin/$(ARCH)-*-gcc))))))
+CBUILD := $(subst -gcc,,$(lastword $(subst /, ,$(firstword $(filter-out android,$(wildcard $(foreach bindir,$(subst :, ,$(PATH)),$(bindir)/$(ARCH)-*-gcc)))))))
endif
ifeq (,$(CBUILD))
CBUILD := $(CHOST)