diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-04-27 15:04:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-04-27 15:04:11 +0200 |
commit | 82191844cd26c1a04990695b340b41cf3d74ebe6 (patch) | |
tree | 27e6f188aa5159910e79ce596353f51267d411d7 | |
parent | f0b8689884d913fa8af8f2c7a7962ab6dbd78bd3 (diff) | |
parent | f1ebeee131d7b73c26689741fa48f55a5dd5b1de (diff) | |
download | patches-82191844cd26c1a04990695b340b41cf3d74ebe6.tar patches-82191844cd26c1a04990695b340b41cf3d74ebe6.tar.gz |
Merge branch 'gnome-updates'
-rw-r--r-- | build-aux/check-available-binaries.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build-aux/check-available-binaries.scm b/build-aux/check-available-binaries.scm index e7db70bba9..0060a8669e 100644 --- a/build-aux/check-available-binaries.scm +++ b/build-aux/check-available-binaries.scm @@ -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)) |