mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: libcap: Fix cross-compiling.
* gnu/packages/linux.scm (libcap)[arguments]: Fix make-flags when cross-compiling.
This commit is contained in:
parent
67d6544b6d
commit
b657f062bb
1 changed files with 3 additions and 3 deletions
|
@ -2945,9 +2945,9 @@ (define-public libcap
|
|||
;; Tell the makefile to use TARGET-gcc and friends
|
||||
;; when cross-compiling.
|
||||
#$@(if (%current-target-system)
|
||||
`((list (string-append "CROSS_COMPILE="
|
||||
,(%current-target-system) "-")
|
||||
"BUILD_CC=gcc"))
|
||||
`((string-append "CROSS_COMPILE="
|
||||
,(%current-target-system) "-")
|
||||
"BUILD_CC=gcc")
|
||||
'()))))
|
||||
(native-inputs (list perl))
|
||||
(supported-systems (delete "i586-gnu" %supported-systems))
|
||||
|
|
Loading…
Reference in a new issue