mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: hurd: Fix building libdde_linux26.
* gnu/packages/hurd.scm (hurd)[arguments]: In phases `build-libdde-linux' and `install-goodies', also set ARCH=x86. Change-Id: I2e7f14afda03c9e21ba9c3b24e195a00ae141701
This commit is contained in:
parent
41e01a1224
commit
cc2e13baec
1 changed files with 4 additions and 2 deletions
|
@ -473,7 +473,8 @@ (define-public hurd
|
|||
(assoc-ref (or native-inputs inputs) "bash")
|
||||
"/bin/bash")
|
||||
(string-append "CC="
|
||||
,(cc-for-target)))))
|
||||
,(cc-for-target))
|
||||
"ARCH=x86")))
|
||||
(add-after 'install 'install-goodies
|
||||
(lambda* (#:key inputs native-inputs outputs #:allow-other-keys)
|
||||
;; Install additional goodies.
|
||||
|
@ -489,7 +490,8 @@ (define-public hurd
|
|||
"/bin/bash")
|
||||
(string-append "INSTALLDIR="
|
||||
out
|
||||
"/share/libdde_linux26/build/include"))
|
||||
"/share/libdde_linux26/build/include")
|
||||
"ARCH=x86")
|
||||
;; Install the fancy UTF-8 motd.
|
||||
(mkdir-p (string-append out "/etc"))
|
||||
(copy-file "console/motd.UTF8"
|
||||
|
|
Loading…
Reference in a new issue