From 3ce7ab206bec9c5de9efc0e5cc9ebc4c0b0f5e6a Mon Sep 17 00:00:00 2001 From: isabel Date: Sat, 22 Jun 2024 20:38:42 +0100 Subject: [PATCH] fix(gnutar-boot): file perms error --- foundation/src/stages/stage1/gnutar/boot.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/foundation/src/stages/stage1/gnutar/boot.nix b/foundation/src/stages/stage1/gnutar/boot.nix index 347c489..92ce4dc 100644 --- a/foundation/src/stages/stage1/gnutar/boot.nix +++ b/foundation/src/stages/stage1/gnutar/boot.nix @@ -53,9 +53,12 @@ in rm tar.tar cd tar-${cfg.version} + # Fix source permissions + chmod -R +r . + chmod +x ./configure + # Configure export CC="tcc -B ${stage1.tinycc.mes.libs.package}/lib" - chmod +x ./configure ./configure \ --build=${platform.build} \ --host=${platform.host} \