guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: squash! fixup! fixup! gnu: bootstrap: %bootstrap-gcc: Also wrap g


From: guix-commits
Subject: 01/03: squash! fixup! fixup! gnu: bootstrap: %bootstrap-gcc: Also wrap g++.
Date: Thu, 21 Nov 2024 08:08:55 -0500 (EST)

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

commit adb649179e1155dc2f3efd95b0ce2ce6613b1adb
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Thu Nov 21 13:16:31 2024 +0100

    squash! fixup! fixup! gnu: bootstrap: %bootstrap-gcc: Also wrap g++.
    
    Move unquote one level up to avoid (if #t / (if #f
    
    Change-Id: Ica11b6c0837d17ef4beeb5fcd26c2ebf9615a28e
---
 gnu/packages/bootstrap.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]