Skip to content

Commit 7f5919c

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 c4b76b8 commit 7f5919c

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

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

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

0 commit comments

Comments
 (0)