From 8e90c80aa998cfaf6011e64af6e6d625f5f98b29 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Fri, 31 Oct 2025 22:57:16 +0700 Subject: [PATCH 1/2] Fix prefix not being triggered --- mk/repo.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/repo.mk b/mk/repo.mk index 3c4196d05..6099309a5 100644 --- a/mk/repo.mk +++ b/mk/repo.mk @@ -1,6 +1,6 @@ # Configuration file for recipe commands -$(REPO_TAG): $(FSTOOLS_TAG) $(CONTAINER_TAG) +$(REPO_TAG): prefix $(FSTOOLS_TAG) $(CONTAINER_TAG) ifeq ($(PODMAN_BUILD),1) $(PODMAN_RUN) make $@ else From d0750a63ac3c0146bf64883270ba457d76e06722 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Fri, 31 Oct 2025 23:09:01 +0700 Subject: [PATCH 2/2] Add filesystem config trigger to rebuild --- mk/repo.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/repo.mk b/mk/repo.mk index 6099309a5..9f7213607 100644 --- a/mk/repo.mk +++ b/mk/repo.mk @@ -1,6 +1,6 @@ # Configuration file for recipe commands -$(REPO_TAG): prefix $(FSTOOLS_TAG) $(CONTAINER_TAG) +$(REPO_TAG): prefix $(FILESYSTEM_CONFIG) $(FSTOOLS_TAG) $(CONTAINER_TAG) ifeq ($(PODMAN_BUILD),1) $(PODMAN_RUN) make $@ else