mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: libdaemon: Fix targeting riscv64.
* gnu/packages/libdaemon.scm (libdaemon)[native-inputs,arguments]: Treat targeting riscv64 like aarch64 is handled. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
52b9f0ef1e
commit
eb5b104ca8
1 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2013, 2014, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||
;;; Copyright © 2022 LuHui <luhux76@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -49,7 +50,8 @@ (define-public libdaemon
|
|||
(file-name (string-append name "-" version ".tar.gz"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(if (and=> (%current-target-system) target-aarch64?)
|
||||
(if (or (and=> (%current-target-system) target-aarch64?)
|
||||
(and=> (%current-target-system) target-riscv64?))
|
||||
`(("config" ,config)) ; for config.sub
|
||||
'()))
|
||||
(arguments
|
||||
|
@ -66,7 +68,8 @@ (define-public libdaemon
|
|||
;; Hurd's console client.
|
||||
"--localstatedir=/var"))
|
||||
'())
|
||||
,@(if (and=> (%current-target-system) target-aarch64?)
|
||||
,@(if (or (and=> (%current-target-system) target-aarch64?)
|
||||
(and=> (%current-target-system) target-riscv64?))
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'configure 'update-config.sub
|
||||
|
|
Loading…
Reference in a new issue