mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-24 19:28:09 +00:00
kernel config project: s/x86/x86_64
Let's use the kernel machine architecture for this value. Also remove a broken check. The "arch" binary on OSX outputs different stuff than on linux. Since we don't need this check anyway (the variable is mostly to demonstrate how cross platform stuff would work, not to actually do it yet), let's just remove the check. Signed-off-by: Tycho Andersen <tycho@docker.com>
This commit is contained in:
parent
3030e27c91
commit
d14412810a
@ -12,7 +12,7 @@
|
||||
HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}')
|
||||
# Name on Hub
|
||||
IMAGE:=kernel
|
||||
ARCH?=$(shell if [ "$$(arch)" = "x86_64" ]]; then echo x86; else $$(arch); fi)
|
||||
ARCH?=x86_64
|
||||
|
||||
.PHONY: check tag push sign
|
||||
# Targets:
|
||||
|
Loading…
Reference in New Issue
Block a user