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
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

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"))