[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/09: gnu: mkfontdir: Fix aarch64 cross-compilation.
From: |
guix-commits |
Subject: |
04/09: gnu: mkfontdir: Fix aarch64 cross-compilation. |
Date: |
Fri, 20 Sep 2019 04:18:00 -0400 (EDT) |
mothacehe pushed a commit to branch core-updates-next
in repository guix.
commit 664339f7d0458ba5f480b8b8244ed8a3cc21c794
Author: Mathieu Othacehe <address@hidden>
Date: Fri Jul 5 18:34:09 2019 +0200
gnu: mkfontdir: Fix aarch64 cross-compilation.
The packaged config.sub and config.guess do not have aarch64 support.
Replace
them by the ones from automake.
* gnu/packages/xorg.scm (mkfontdir)[arguments]: Replace outdated config.sub
and
config.guess, by the ones taken from ...
[native-inputs]: ... here, by adding automake.
---
gnu/packages/xorg.scm | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index d7cd585..d5d983a 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -20,6 +20,7 @@
;;; Copyright © 2018 Benjamin Slade <address@hidden>
;;; Copyright © 2019 nee <address@hidden>
;;; Copyright © 2019 Yoshinori Arai <address@hidden>
+;;; Copyright © 2019 Mathieu Othacehe <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -4742,8 +4743,21 @@ protocol and arbitrary X extension protocol.")
"0c3563kw9fg15dpgx4dwvl12qz6sdqdns1pxa574hc7i5m42mman"))))
(build-system gnu-build-system)
(arguments
- '(#:phases
+ `(#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'fix-configure
+ (lambda* (#:key inputs native-inputs #:allow-other-keys)
+ ;; Replace outdated config.sub and config.guess:
+ (for-each (lambda (file)
+ (install-file (string-append
+ (assoc-ref
+ (or native-inputs inputs) "automake")
+ "/share/automake-"
+ ,(version-major+minor
+ (package-version automake))
+ "/" file) "."))
+ '("config.sub" "config.guess"))
+ #t))
(add-after 'install 'wrap-mkfontdir
(lambda* (#:key inputs outputs #:allow-other-keys)
(wrap-program (string-append (assoc-ref outputs "out")
@@ -4755,7 +4769,8 @@ protocol and arbitrary X extension protocol.")
(inputs
`(("mkfontscale" ,mkfontscale)))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("pkg-config" ,pkg-config)
+ ("automake" ,automake))) ;For up to date 'config.guess' and
'config.sub'.
(home-page "https://www.x.org/wiki/")
(synopsis "Create an index of X font files in a directory")
(description
- branch core-updates-next updated (91acbda -> 3ed89b1), guix-commits, 2019/09/20
- 02/09: gnu: indent: Fix aarch64 cross-compilation., guix-commits, 2019/09/20
- 05/09: gnu: lvm2: Fix cross-compilation., guix-commits, 2019/09/20
- 01/09: gnu: libpaper: Fix aarch64 cross-compilation., guix-commits, 2019/09/20
- 04/09: gnu: mkfontdir: Fix aarch64 cross-compilation.,
guix-commits <=
- 07/09: gnu: procps: Fix cross-compilation., guix-commits, 2019/09/20
- 03/09: gnu: libsamplerate: Fix aarch64 cross-compilation., guix-commits, 2019/09/20
- 09/09: gnu: mdadm: Fix cross-compilation., guix-commits, 2019/09/20
- 06/09: gnu: nghttp2: Fix cross-compilation., guix-commits, 2019/09/20
- 08/09: gnu: console-setup: Fix cross-compilation., guix-commits, 2019/09/20