From 17836d210959ddd562343b43c2bdae965e09f984 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 6 Feb 2025 18:30:29 +0000 Subject: [PATCH] build: Always turn tmpfs usage on for local builds Signed-off-by: Michael Tremer --- src/pakfire/build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pakfire/build.c b/src/pakfire/build.c index 527bd318..eafc86ee 100644 --- a/src/pakfire/build.c +++ b/src/pakfire/build.c @@ -1950,7 +1950,7 @@ static int pakfire_build_setup_pakfire( // Is this a local build? if (build->flags & PAKFIRE_BUILD_LOCAL) - flags |= PAKFIRE_FLAGS_BUILD_LOCAL; + flags |= PAKFIRE_FLAGS_BUILD_LOCAL | PAKFIRE_USE_TMPFS; // Enable snapshot? if (build->flags & PAKFIRE_BUILD_ENABLE_SNAPSHOT) -- 2.39.5