Skip to content

Commit bd58168

Browse files
christoph-zededaclaude
authored andcommitted
Makefile.eve: make linuxkit tmp dir user-specific
Avoids collisions when multiple users build on the same host. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Signed-off-by: Christoph Ostarek <christoph@zededa.com>
1 parent 385a871 commit bd58168

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile.eve

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ LINUXKIT_GIT_REF ?= 3bf33c3a11fc20b459195294a7d8980cbca4195b
2828

2929
ifneq ($(LINUXKIT_GIT_URL),)
3030
_LK_VERSION := $(shell printf '%s' '$(LINUXKIT_GIT_REF)' | cut -c1-12)
31-
LK := /tmp/linuxkit-$(_LK_VERSION)
31+
LK := /tmp/linuxkit-$(_LK_VERSION)-$(USER)
3232
else
33-
LK := /tmp/linuxkit-$(LINUXKIT_VERSION)
33+
LK := /tmp/linuxkit-$(LINUXKIT_VERSION)-$(USER)
3434
endif
3535

3636
SOURCE_DATE_EPOCH=$(shell git log -1 --format=%ct)

0 commit comments

Comments
 (0)