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: If0cf8fff36347f6bd52b8cf1f43a11fc7f5323b7master
parent
43370c2db3
commit
60e9765729
|
@ -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))
|
||||
`())
|
||||
|
|
Reference in New Issue