mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
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:
@ -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))
|
||||
|
||||
|
Reference in New Issue
Block a user