Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Safonov <dima@arista.com>2019-11-22 00:56:34 +0300
committerAndrei Vagin <avagin@gmail.com>2020-02-04 23:39:04 +0300
commit25f6d4f72fb995cb776d65a9d4d539d4fdcc6740 (patch)
treefa28ecff36b10485b0e7902953b68d09948644f0 /Makefile.config
parent60bb5c731078ad15b3d9e62782d692d91c5c2db0 (diff)
build: Remove SRCARCH
SRCARCH is always equal ARCH. There are no rules when to use one or another and architectures may forget to set one of them up. No need for a second variable meaning the same and confusing people. Remove it completely. Self-correction [after some debug]: SRCARCH was different in one place: zdtm Makefile by some unintentional mistake: > ifeq ($(ARCH),arm64) > ARCH ?= aarch64 > SRCARCH ?= aarch64 > endif That meant to be "ARCH := aarch64" because "?=" would never work inside that ifeq. Fix up this part of mess too. Signed-off-by: Dmitry Safonov <dima@arista.com> Signed-off-by: Andrei Vagin <avagin@gmail.com>
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.config b/Makefile.config
index 1e4352b9d..5af3fed38 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -30,7 +30,7 @@ CONFIG_FILE = .config
$(CONFIG_FILE):
touch $(CONFIG_FILE)
-ifeq ($(SRCARCH),x86)
+ifeq ($(ARCH),x86)
# CONFIG_COMPAT is only for x86 now, no need for compile-test other archs
ifeq ($(call try-asm,$(FEATURE_TEST_X86_COMPAT)),true)
export CONFIG_COMPAT := y