[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 01/12] tests/docker: simplify HOST_ARCH definition
|
From: |
Paolo Bonzini |
|
Subject: |
[PULL 01/12] tests/docker: simplify HOST_ARCH definition |
|
Date: |
Fri, 26 May 2023 18:08:13 +0200 |
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>
---
tests/docker/Makefile.include | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include
index 94015253254c..142e8605eee9 100644
--- a/tests/docker/Makefile.include
+++ b/tests/docker/Makefile.include
@@ -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))
--
2.40.1
- [PULL 00/12] (Mostly) build system patches for 2023-05-26, Paolo Bonzini, 2023/05/26
- [PULL 01/12] tests/docker: simplify HOST_ARCH definition,
Paolo Bonzini <=
- [PULL 02/12] tests/vm: fix and simplify HOST_ARCH definition, Paolo Bonzini, 2023/05/26
- [PULL 03/12] Makefile: remove $(TESTS_PYTHON), Paolo Bonzini, 2023/05/26
- [PULL 04/12] configure: unset harmful environment variables, Paolo Bonzini, 2023/05/26
- [PULL 08/12] virtio: qmp: fix memory leak, Paolo Bonzini, 2023/05/26
- [PULL 05/12] meson: Remove leftover comment, Paolo Bonzini, 2023/05/26
- [PULL 07/12] slirp: update wrap to latest master, Paolo Bonzini, 2023/05/26
- [PULL 09/12] meson: simplify logic for -Dfdt, Paolo Bonzini, 2023/05/26