summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2020-02-08 16:00:21 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-02-08 16:00:47 +0100
commit94a6a99e8775c11160f8c2c73ce1251f7e69131f (patch)
tree11489f8afe37fb97c8c200da1c86e7af6dfa1bbf
parent85b4af2c1847337c102c4769d48aa1762c7a3ce7 (diff)
downloadptxdist-94a6a99e8775c11160f8c2c73ce1251f7e69131f.tar.gz
ptxdist-94a6a99e8775c11160f8c2c73ce1251f7e69131f.tar.xz
nss: set correct architecture for x86ptxdist-2020.02.0
'x86' is used anyways and without this, install fails because the library output directory is not calculated correctly. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/nss.make3
1 files changed, 3 insertions, 0 deletions
diff --git a/rules/nss.make b/rules/nss.make
index 7887b886b..eb0ab8479 100644
--- a/rules/nss.make
+++ b/rules/nss.make
@@ -35,6 +35,9 @@ NSS_ARCH := $(call remove_quotes,$(PTXCONF_ARCH_STRING))
ifdef PTXCONF_ARCH_ARM64
NSS_ARCH := aarch64
endif
+ifeq ($(NSS_ARCH),i386)
+NSS_ARCH := x86
+endif
NSS_MAKE_ENV := \
$(CROSS_ENV) \