gnu: bootstrap: Add missing 'supported-systems', remove extra 'match'.
Previously evaluation would fail for armhf, aarch64, and mips64el. * gnu/packages/bootstrap.scm (%bootstrap-mescc-tools)[supported-systems]: New field. (%bootstrap-mes)[supported-systems]: New field. [inputs]: Remove 'match' form on %current-system, which would fail on non-Intel platforms.master
parent
dad2e7dc79
commit
0b07f22728
|
@ -659,6 +659,7 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
|
||||||
(synopsis "Bootstrap binaries of MesCC Tools")
|
(synopsis "Bootstrap binaries of MesCC Tools")
|
||||||
(description synopsis)
|
(description synopsis)
|
||||||
(home-page #f)
|
(home-page #f)
|
||||||
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
||||||
(define %bootstrap-mes
|
(define %bootstrap-mes
|
||||||
|
@ -702,10 +703,9 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
|
||||||
"mes-minimal-stripped-0.19-i686-linux.tar.xz")
|
"mes-minimal-stripped-0.19-i686-linux.tar.xz")
|
||||||
%bootstrap-base-urls))
|
%bootstrap-base-urls))
|
||||||
(sha256
|
(sha256
|
||||||
(match (%current-system)
|
(base32
|
||||||
((or "i686-linux" "x86_64-linux")
|
"0k7kkl68a6xaadv47ij0nr9jm5ca1ffj38n7f2lg80y72wdkwr9h")))))))
|
||||||
(base32
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
||||||
"0k7kkl68a6xaadv47ij0nr9jm5ca1ffj38n7f2lg80y72wdkwr9h")))))))))
|
|
||||||
(synopsis "Bootstrap binaries of Mes")
|
(synopsis "Bootstrap binaries of Mes")
|
||||||
(description synopsis)
|
(description synopsis)
|
||||||
(home-page #f)
|
(home-page #f)
|
||||||
|
|
Reference in New Issue