This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch hurd-team
in repository guix.

The following commit(s) were added to refs/heads/hurd-team by this push:
     new e2e6c6f73a fixup! gnu: bootstrap: %bootstrap-gcc: Also wrap g++.
e2e6c6f73a is described below

commit e2e6c6f73ac524834f67613bfe914d043d1ec330
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Nov 21 14:07:50 2024 +0200

    fixup! gnu: bootstrap: %bootstrap-gcc: Also wrap g++.
    
    Change-Id: I6770c2c45069baef1727306543b9066f0d3694f0
---
 gnu/packages/bootstrap.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index f66cba3b19..f02c2aba0c 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -892,7 +892,10 @@ exec ~a/bin/~a -B~a/lib \
 
              (with-directory-excursion bindir
                (chmod "." #o755)
-               (for-each wrap-program '("gcc" "g++"))))))))
+               (for-each wrap-program
+                         (if (target-hurd64?)
+                             '("gcc" "g++")
+                             '("gcc")))))))))
     (inputs
      `(("tar" ,(bootstrap-executable "tar" (%current-system)))
        ("xz"  ,(bootstrap-executable "xz" (%current-system)))

Reply via email to