gnu: xcb-util-wm: Fix cross-compiling to riscv64.
* gnu/packages/xorg.scm (xcb-util-wm)[arguments]: Add update-config-scripts phase when cross-compiling to riscv64. [native-inputs]: Add config when cross-compiling to riscv64. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
81515a4029
commit
0ee6c9ea01
1 changed files with 20 additions and 2 deletions
|
@ -5638,11 +5638,29 @@ The XCB util-renderutil module provides the following library:
|
||||||
"0gra7hfyxajic4mjd63cpqvd20si53j1q3rbdlkqkahfciwq3gr8"))))
|
"0gra7hfyxajic4mjd63cpqvd20si53j1q3rbdlkqkahfciwq3gr8"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--disable-static")))
|
`(#:configure-flags '("--disable-static")
|
||||||
|
,@(if (and (target-riscv64?)
|
||||||
|
(%current-target-system))
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'update-config-scripts
|
||||||
|
(lambda* (#:key inputs native-inputs #:allow-other-keys)
|
||||||
|
;; Replace outdated config.guess and config.sub.
|
||||||
|
(for-each (lambda (file)
|
||||||
|
(install-file
|
||||||
|
(search-input-file
|
||||||
|
(or native-inputs inputs)
|
||||||
|
(string-append "/bin/" file)) "."))
|
||||||
|
'("config.guess" "config.sub"))))))
|
||||||
|
'())))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list libxcb))
|
(list libxcb))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list m4 pkg-config))
|
(append (if (and (target-riscv64?)
|
||||||
|
(%current-target-system))
|
||||||
|
(list config)
|
||||||
|
'())
|
||||||
|
(list m4 pkg-config)))
|
||||||
(home-page "https://cgit.freedesktop.org/xcb/util-wm/")
|
(home-page "https://cgit.freedesktop.org/xcb/util-wm/")
|
||||||
(synopsis "Client and window-manager helpers for ICCCM and EWMH")
|
(synopsis "Client and window-manager helpers for ICCCM and EWMH")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue