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
|
@ -220,6 +220,7 @@ for SYSTEM, or #f if there is no configuration for SYSTEM."
|
||||||
(let ((arch (car (string-split system #\-))))
|
(let ((arch (car (string-split system #\-))))
|
||||||
(setenv "ARCH"
|
(setenv "ARCH"
|
||||||
(cond ((string=? arch "i686") "i386")
|
(cond ((string=? arch "i686") "i386")
|
||||||
|
((string=? arch "mips64el") "mips")
|
||||||
(else arch)))
|
(else arch)))
|
||||||
(format #t "`ARCH' set to `~a'~%" (getenv "ARCH")))
|
(format #t "`ARCH' set to `~a'~%" (getenv "ARCH")))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue