tests/docker: simplify HOST_ARCH definition
ARCH is always empty, so just define HOST_ARCH as the result of uname. Acked-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
a3cb6d5004
commit
a2696204de
@ -6,7 +6,7 @@ NULL :=
|
||||
SPACE := $(NULL) #
|
||||
COMMA := ,
|
||||
|
||||
HOST_ARCH = $(if $(ARCH),$(ARCH),$(shell uname -m))
|
||||
HOST_ARCH = $(shell uname -m)
|
||||
USER = $(if $(NOUSER),,$(shell id -un))
|
||||
UID = $(if $(NOUSER),,$(shell id -u))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user