We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d351d80 commit 006a918Copy full SHA for 006a918
share/product.mk
@@ -22,7 +22,7 @@ CODENAME ?= $(shell basename $(RELEASE))
22
UBUNTU = $(shell [ $(DISTRO) = 'ubuntu' ] && echo 'y')
23
DEBIAN = $(shell [ $(DISTRO) = 'debian' ] && echo 'y')
24
25
-FAB_ARCH = $(shell dpkg --print-architecture)
+FAB_ARCH ?= $(shell dpkg --print-architecture)
26
I386 = $(shell [ $(FAB_ARCH) = 'i386' ] && echo 'y')
27
AMD64 = $(shell [ $(FAB_ARCH) = 'amd64' ] && echo 'y')
28
ARM64 = $(shell [ $(FAB_ARCH) = 'arm64' ] && echo 'y')
0 commit comments