[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch core-updates updated: gnu: make-libstdc++: Adjust order of phases
From: |
guix-commits |
Subject: |
branch core-updates updated: gnu: make-libstdc++: Adjust order of phases. |
Date: |
Tue, 17 Oct 2023 11:14:52 -0400 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new 0f5fbb35de gnu: make-libstdc++: Adjust order of phases.
0f5fbb35de is described below
commit 0f5fbb35de7261faf7e656e67a73e5a7f5fa71de
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Oct 16 21:50:51 2023 +0300
gnu: make-libstdc++: Adjust order of phases.
* gnu/packages/gcc.scm (make-libstdc++)[arguments]: Move custom
'fix-rs6000-libdir phase to after the 'unpack phase.
---
gnu/packages/gcc.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index a983fd040a..7e6465f89b 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -950,7 +950,7 @@ using compilers other than GCC."
(assoc-ref inputs "powerpc64le-patch")))))
'()))
;; Force rs6000 (i.e., powerpc) libdir to be /lib and not /lib64.
- (add-before 'chdir 'fix-rs6000-libdir
+ (add-after 'unpack 'fix-rs6000-libdir
(lambda _
(when (file-exists? "gcc/config/rs6000")
(substitute* (find-files "gcc/config/rs6000")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch core-updates updated: gnu: make-libstdc++: Adjust order of phases.,
guix-commits <=