mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
gnu: fnc: fix cross-compiling.
* gnu/packages/version-control.scm (fnc)[arguments]<#:phases>: Add don-t-use-install-s phase. Change-Id: I2d0fb7d31055fe5f33706eed6df813c89ff5cc16
This commit is contained in:
@@ -3009,7 +3009,13 @@ modification time.")
|
||||
(arguments
|
||||
(list
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(delete 'configure))
|
||||
(delete 'configure)
|
||||
;; fix cross-compiling.
|
||||
(add-after 'unpack 'don-t-use-install-s
|
||||
(lambda _
|
||||
(substitute* "fnc.bld.mk"
|
||||
(("install -s")
|
||||
"install")))))
|
||||
#:tests? #f ; no tests
|
||||
#:make-flags #~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "PREFIX=" #$output))))
|
||||
|
||||
Reference in New Issue
Block a user