me
/
guix
Archived
1
0
Fork 0

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
master
Efraim Flashner 2024-05-12 09:57:41 +03:00
parent 43370c2db3
commit 60e9765729
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 2 additions and 0 deletions

View File

@ -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))
`())