mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: java-jansi-native: Compile fix for the Hurd.
* gnu/packages/java.scm (java-jansi-native): Add catch-all clause; fixes running guix refresh.
This commit is contained in:
parent
6741f543e6
commit
9820d6eda6
1 changed files with 3 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
||||||
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2019, 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
|
;;; Copyright © 2019, 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
|
||||||
|
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -10137,7 +10138,8 @@ (define-public java-jansi-native
|
||||||
"linux32")
|
"linux32")
|
||||||
((or "x86_64-linux" "aarch64-linux"
|
((or "x86_64-linux" "aarch64-linux"
|
||||||
"mips64el-linux")
|
"mips64el-linux")
|
||||||
"linux64")))))
|
"linux64")
|
||||||
|
(_ "unknown-kernel")))))
|
||||||
(install-file "src/main/native-package/src/libjansi.so" dir))
|
(install-file "src/main/native-package/src/libjansi.so" dir))
|
||||||
#t))
|
#t))
|
||||||
(add-after 'install 'install-native
|
(add-after 'install 'install-native
|
||||||
|
|
Loading…
Reference in a new issue