mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: gcl: Avoid referencing GCC from the top-level.
* gnu/packages/lisp.scm (gcl)[arguments]: Use SEARCH-INPUT-FILE instead of referencing the GCC variable.
This commit is contained in:
parent
c0c9912b44
commit
91918e9405
1 changed files with 3 additions and 3 deletions
|
@ -158,9 +158,9 @@ (define-public gcl
|
|||
#$(this-package-input "libtirpc")
|
||||
"/lib")
|
||||
"LIBS=-ltirpc")
|
||||
#:make-flags ,#~(list
|
||||
(string-append "GCL_CC=" #$gcc "/bin/gcc")
|
||||
(string-append "CC="#$gcc "/bin/gcc"))
|
||||
#:make-flags ,#~(let ((gcc (search-input-file %build-inputs "/bin/gcc")))
|
||||
(list (string-append "GCL_CC=" gcc)
|
||||
(string-append "CC=" gcc)))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'realpath-workaround
|
||||
|
|
Loading…
Reference in a new issue