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 | |
| parent | df2d51f025fc7d106f837da3a2426bb7eddc76a9 (diff) | |
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'.
| -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 3983d1409..d338ad230 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. |