From 0ee6c9ea01d1f69b3b7b2c2d79d62b68ffd268ed Mon Sep 17 00:00:00 2001 From: Zheng Junjie <873216071@qq.com> Date: Tue, 28 Feb 2023 16:33:33 +0800 Subject: 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 --- gnu/packages/xorg.scm | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 7632dac1c4..e1a7cf96f9 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -5638,11 +5638,29 @@ The XCB util-renderutil module provides the following library: "0gra7hfyxajic4mjd63cpqvd20si53j1q3rbdlkqkahfciwq3gr8")))) (build-system gnu-build-system) (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 (list libxcb)) (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/") (synopsis "Client and window-manager helpers for ICCCM and EWMH") (description -- cgit v1.2.3