efraim pushed a commit to branch master
in repository guix.

commit 60e9765729432217af22bf7725bf56f23ddf5a95
Author: Efraim Flashner <efr...@flashner.co.il>
AuthorDate: Sun May 12 09:57:41 2024 +0300

    gnu: gnome-js-common: Fix build on powerpc64le-linux.
    
    * gnu/packages/gnome.scm (gnome-js-common)[arguments]: Replace the
    config.guess and config.sub files when building for powerpc64le-linux.
    [native-inputs]: Add config when building for powerpc64le-linux.
    
    Change-Id: If0cf8fff36347f6bd52b8cf1f43a11fc7f5323b7
---
 gnu/packages/gnome.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 92e35e3c5a..c8a80bca06 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -463,6 +463,7 @@ and other formats.")
        #:phases
        (modify-phases %standard-phases
          ,@(if (or (target-riscv64?)
+                   (target-ppc64le?)
                    (target-aarch64?))
                `((add-after 'unpack 'update-config-scripts
                    (lambda* (#:key native-inputs inputs #:allow-other-keys)
@@ -475,6 +476,7 @@ and other formats.")
                '()))))
     (native-inputs
      `(,@(if (or (target-riscv64?)
+                 (target-ppc64le?)
                  (target-aarch64?))
              `(("config" ,config))
              `())

Reply via email to