1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02: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:
Lu Hui
2022-09-16 20:46:06 +08:00
committed by Christopher Baines
parent 52b9f0ef1e
commit eb5b104ca8

View File

@@ -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 @@
(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 @@
;; 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