diff options
author | Mark H Weaver <mhw@netris.org> | 2015-09-02 19:59:12 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-09-02 19:59:12 -0400 |
commit | 52c20d8e1517190ca5bfbaa9f83da17587b47e9c (patch) | |
tree | 33b4427b5c65551d7b5d6b990c9531741c542bd7 /guix/packages.scm | |
parent | df2d51f025fc7d106f837da3a2426bb7eddc76a9 (diff) | |
download | gnu-guix-52c20d8e1517190ca5bfbaa9f83da17587b47e9c.tar gnu-guix-52c20d8e1517190ca5bfbaa9f83da17587b47e9c.tar.gz |
packages: Add 'armhf-linux' to '%hydra-supported-systems'.
* guix/packages.scm (%hydra-supported-systems): Do not remove 'armhf-linux'
from it. It is now equal to '%supported-systems'.
Diffstat (limited to 'guix/packages.scm')
-rw-r--r-- | guix/packages.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 3983d1409a..d338ad230b 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -192,7 +192,7 @@ representation." (define %hydra-supported-systems ;; This is the list of system types for which build slaves are available. - (delete "armhf-linux" %supported-systems)) + %supported-systems) ;; A package. |