summaryrefslogtreecommitdiff
path: root/build-aux/hydra
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2017-11-07 17:08:10 +0100
committerLudovic Courtès <ludo@gnu.org>2017-11-07 18:09:12 +0100
commit25a5b187e8f3efe4b80fd2d005b04d89e1a85d67 (patch)
treeca5c6cd1a15b2ac98b08bc08760c491ec210ab51 /build-aux/hydra
parentb5033c5a9e1b1f06a7daf9b8de6ff9f9c8431a97 (diff)
downloadpatches-25a5b187e8f3efe4b80fd2d005b04d89e1a85d67.tar
patches-25a5b187e8f3efe4b80fd2d005b04d89e1a85d67.tar.gz
hydra: Build hidden packages.
* build-aux/hydra/gnu-system.scm (all-packages): Pass #:select? to 'fold-packages'.
Diffstat (limited to 'build-aux/hydra')
-rw-r--r--build-aux/hydra/gnu-system.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index 1782969bf8..2e29cbaebc 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -272,7 +272,8 @@ valid."
result) ;don't build it
(else
(cons package result))))
- '()))
+ '()
+ #:select? (const #t))) ;include hidden packages
;;;