guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: bdb: Fix targeting riscv64.


From: guix-commits
Subject: 03/03: gnu: bdb: Fix targeting riscv64.
Date: Sat, 8 Oct 2022 07:03:39 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 14afaa5381b1185bf9e3701ff09c5bab12dacfab
Author: Lu Hui <luhux76@gmail.com>
AuthorDate: Fri Sep 16 23:02:28 2022 +0800

    gnu: bdb: Fix targeting riscv64.
    
    * gnu/packages/libdaemon.scm (bdb)[native-inputs,arguments]: Treat targeting
    riscv64 like aarch64 is handled.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/dbm.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/dbm.scm b/gnu/packages/dbm.scm
index 8b6804aa92..2d3cce9e15 100644
--- a/gnu/packages/dbm.scm
+++ b/gnu/packages/dbm.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
 ;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
+;;; Copyright © 2021 LuHui <luhux76@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -65,7 +66,8 @@
          ;; for "--build", but not for "--host", so update config.sub.
          ,@(if (and (%current-target-system)
                     (or (target-ppc64le? (%current-target-system))
-                        (target-aarch64? (%current-target-system))))
+                        (target-aarch64? (%current-target-system))
+                        (target-riscv64? (%current-target-system))))
                `((add-after 'unpack 'update-config.sub
                    (lambda* (#:key native-inputs #:allow-other-keys)
                      (delete-file "dist/config.sub")
@@ -118,7 +120,8 @@
     (native-inputs
      (if (and (%current-target-system)
               (or (target-ppc64le? (%current-target-system))
-                  (target-aarch64? (%current-target-system))))
+                  (target-aarch64? (%current-target-system))
+                  (target-riscv64? (%current-target-system))))
          `(("config" ,config)) ; for config.sub
          '()))
     (synopsis "Berkeley database")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]