mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: linux-libre: Add case for ARCH=mips.
* gnu/packages/linux.scm (linux-libre)[build-phase]: When setting ARCH, add a case for MIPS.
This commit is contained in:
parent
6c8d70b0b6
commit
726029b2ba
1 changed files with 1 additions and 0 deletions
|
@ -220,6 +220,7 @@ (define-public linux-libre
|
|||
(let ((arch (car (string-split system #\-))))
|
||||
(setenv "ARCH"
|
||||
(cond ((string=? arch "i686") "i386")
|
||||
((string=? arch "mips64el") "mips")
|
||||
(else arch)))
|
||||
(format #t "`ARCH' set to `~a'~%" (getenv "ARCH")))
|
||||
|
||||
|
|
Loading…
Reference in a new issue