mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: nss: Set CCC unconditionally.
* gnu/packages/nss.scm (nss)[arguments]: Set CCC unconditionally in the 'configure phase.
This commit is contained in:
parent
6f44258088
commit
b81b3d5fbe
1 changed files with 2 additions and 5 deletions
|
@ -186,11 +186,8 @@ (define-public nss
|
|||
(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"))
|
||||
|
|
Loading…
Reference in a new issue