1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: nss: Set CCC unconditionally.

* gnu/packages/nss.scm (nss)[arguments]: Set CCC unconditionally in the
'configure phase.
This commit is contained in:
Efraim Flashner
2023-10-16 12:38:54 +03:00
committed by Ludovic Courtès
parent 6f44258088
commit b81b3d5fbe

View File

@@ -186,11 +186,8 @@ 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 "NATIVE_CC" "gcc"))
#~())
(setenv "CCC" #$(cxx-for-target))
(setenv "NATIVE_CC" "gcc")
;; No VSX on powerpc-linux.
#$@(if (target-ppc32?)
#~((setenv "NSS_DISABLE_CRYPTO_VSX" "1"))