mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: tree: Fix cross-compiling.
* gnu/packages/admin.scm (tree)[arguments]: Use cc-for-taget.
This commit is contained in:
parent
28302e04ae
commit
e773326cc2
1 changed files with 3 additions and 2 deletions
|
@ -2405,10 +2405,11 @@ recover lost partitions and/or make non-booting disks bootable again.")
|
||||||
(base32 "0f92vx6gpz7v29wi9clklzah57v7lgx5kv0m1w4b9xjc35d9qcz3"))))
|
(base32 "0f92vx6gpz7v29wi9clklzah57v7lgx5kv0m1w4b9xjc35d9qcz3"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases (modify-phases %standard-phases (delete 'configure))
|
`(#:phases (modify-phases %standard-phases (delete 'configure))
|
||||||
#:tests? #f ; no check target
|
#:tests? #f ; no check target
|
||||||
#:make-flags (let ((out (assoc-ref %outputs "out")))
|
#:make-flags (let ((out (assoc-ref %outputs "out")))
|
||||||
(list (string-append "PREFIX=" out)))))
|
(list (string-append "PREFIX=" out)
|
||||||
|
(string-append "CC=" ,(cc-for-target))))))
|
||||||
(synopsis "Recursively list the contents of a directory")
|
(synopsis "Recursively list the contents of a directory")
|
||||||
(description
|
(description
|
||||||
"Tree is a recursive directory listing command that produces a depth
|
"Tree is a recursive directory listing command that produces a depth
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue