Skip to content

Commit 0aa61a5

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 7fc6018 commit 0aa61a5

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
@@ -32,9 +32,9 @@ LINUXKIT_GIT_REF ?= 3bf33c3a11fc20b459195294a7d8980cbca4195b
3232

3333
ifneq ($(LINUXKIT_GIT_URL),)
3434
_LK_VERSION := $(shell printf '%s' '$(LINUXKIT_GIT_REF)' | cut -c1-12)
35-
LK := /tmp/linuxkit-$(_LK_VERSION)
35+
LK := /tmp/linuxkit-$(_LK_VERSION)-$(USER)
3636
else
37-
LK := /tmp/linuxkit-$(LINUXKIT_VERSION)
37+
LK := /tmp/linuxkit-$(LINUXKIT_VERSION)-$(USER)
3838
endif
3939

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

0 commit comments

Comments
 (0)