From 0b16d6ddce390a65cb489576069e7b6bdf6670c4 Mon Sep 17 00:00:00 2001 From: vxtls <187420201+vxtls@users.noreply.github.com> Date: Thu, 19 Feb 2026 22:06:43 -0500 Subject: [PATCH] fix(steps-guix/binutils): compile from top-level Makefile in pass1 Drop the manual make -C opcodes i386-gen call from pass1.sh and rely on default_src_compile instead. This avoids failures when opcodes/ is not yet available in the current build context (make: *** opcodes: No such file or directory) and matches the stable top-level recursive build flow used elsewhere in the project. --- steps-guix/binutils-2.41/pass1.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/steps-guix/binutils-2.41/pass1.sh b/steps-guix/binutils-2.41/pass1.sh index b68fd9db..ffd98eb3 100755 --- a/steps-guix/binutils-2.41/pass1.sh +++ b/steps-guix/binutils-2.41/pass1.sh @@ -157,7 +157,6 @@ src_configure() { } src_compile() { - make -C opcodes i386-gen default_src_compile }