efraim pushed a commit to branch core-updates
in repository guix.
commit 7e4fdaccbc121d6b008437184cafe3430514fd0c
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Oct 16 12:38:54 2023 +0300
gnu: nss: Set CCC unconditionally.
* gnu/packages/nss.scm (nss)[arguments]: Set CCC unconditionally in the
'configure phase.
---
gnu/packages/nss.scm | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/gnu/packages/nss.scm b/gnu/packages/nss.scm
index 54b9e5041a..2937bfecb2 100644
--- a/gnu/packages/nss.scm
+++ b/gnu/packages/nss.scm
@@ -174,10 +174,7 @@ in the Mozilla clients.")
(replace 'configure
(lambda _
(setenv "CC" #$(cc-for-target))
- ;; TODO: Set this unconditionally
- #$@(if (%current-target-system)
- #~((setenv "CCC" #$(cxx-for-target)))
- #~())
+ (setenv "CCC" #$(cxx-for-target))
;; No VSX on powerpc-linux.
#$@(if (target-ppc32?)
#~((setenv "NSS_DISABLE_CRYPTO_VSX" "1"))