blob: 648f5713ae29eed2bb446cb5ddaf4ccac0e79886 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001--- a/nss/coreconf/arch.mk
2+++ b/nss/coreconf/arch.mk
3@@ -20,13 +20,13 @@
4 # Macros for getting the OS architecture
5 #
6
7-OS_ARCH := $(subst /,_,$(shell uname -s))
8+OS_ARCH ?= $(subst /,_,$(shell uname -s))
9
10 #
11 # Attempt to differentiate between sparc and x86 Solaris
12 #
13
14-OS_TEST := $(shell uname -m)
15+OS_TEST ?= $(shell uname -m)
16 ifeq ($(OS_TEST),i86pc)
17 OS_RELEASE := $(shell uname -r)_$(OS_TEST)
18 else