diff options
author | Christopher Baines <mail@cbaines.net> | 2022-11-25 10:21:57 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-11-25 10:21:57 +0000 |
commit | e94e0acad564b053fa911276d4c56c7325d16496 (patch) | |
tree | 99f67198710ec32fb1f6a99925f16b083c429a97 | |
parent | 79e40b6ce8e4f5f499ea338aede75a0810a210c1 (diff) | |
download | guix-resolve-derivation-lint-warnings.tar guix-resolve-derivation-lint-warnings.tar.gz |
gnu: Resolve derivation lint warnings.resolve-derivation-lint-warnings
Computing derivations for these systems (i686-gnu and riscv32-linux) fails
with an error like the following:
could not find bootstrap binary 'tar' for system
* gnu/packages/mes.scm (mescc-tools)[supported-systems]: Remove riscv32-linux.
* guix/packages.scm (%hurd-system): Remove i686-gnu.
-rw-r--r-- | gnu/packages/mes.scm | 2 | ||||
-rw-r--r-- | guix/packages.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index d4e0e1203f..4487b1b6eb 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -234,7 +234,7 @@ Guile.") (build-system gnu-build-system) (supported-systems '("i686-linux" "x86_64-linux" "armhf-linux" "aarch64-linux" - "riscv32-linux" "riscv64-linux")) + "riscv64-linux")) (arguments `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:test-target "test" diff --git a/guix/packages.scm b/guix/packages.scm index 502df7fdd1..8f119d9fa7 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -423,7 +423,7 @@ from forcing GEXP-PROMISE." (define %hurd-systems ;; The GNU/Hurd systems for which support is being developed. - '("i586-gnu" "i686-gnu")) + '("i586-gnu")) (define %cuirass-supported-systems ;; This is the list of system types for which build machines are available. |