Skip to content

Commit 3e2eae6

Browse files
authored
Merge pull request #599 from fntlnz/lf/replace-arch
Makefile: replace the 'arch' command with 'uname -m'
2 parents b1c4e32 + 5005907 commit 3e2eae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export FIRECRACKER_CONTAINERD_TEST_IMAGE?=localhost/firecracker-containerd-test
3333
export GO_CACHE_VOLUME_NAME?=gocache
3434

3535
# This Makefile uses Firecracker's pre-build Linux kernels for x86_64 and aarch64.
36-
host_arch=$(shell arch)
36+
host_arch=$(shell uname -m)
3737
ifeq ($(host_arch),x86_64)
3838
kernel_sha256sum="ea5e7d5cf494a8c4ba043259812fc018b44880d70bcbbfc4d57d2760631b1cd6"
3939
else ifeq ($(host_arch),aarch64)

0 commit comments

Comments
 (0)