build: 'make assert-binaries-available' shows the list of systems.

* build-aux/check-available-binaries.scm: Display %HYDRA-SUPPORTED-SYSTEMS.
This commit is contained in:
Ludovic Courtès 2016-04-27 15:00:49 +02:00
parent 63e7796f62
commit f1ebeee131
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 2 deletions

View File

@ -46,8 +46,9 @@
(available (substitutable-paths store total))
(missing (lset-difference string=? total available)))
(if (null? missing)
(format (current-error-port) "~a packages found substitutable~%"
(length total))
(format (current-error-port)
"~a packages found substitutable on~{ ~a~}~%"
(length total) %hydra-supported-systems)
(format (current-error-port)
"~a packages are not substitutable:~%~{ ~a~%~}~%"
(length missing) missing))