diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-01-24 18:48:29 +0100 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-01-28 16:31:38 +0100 |
commit | 8c3d8894562ac990e7b5f23e74e6f12ea14b1a87 (patch) | |
tree | aa07b8cfe3a6c1b8e900ece4b2d4984955b5c660 /build-aux | |
parent | 74e667d14912b9243043b43995848d962569a9a1 (diff) | |
download | patches-8c3d8894562ac990e7b5f23e74e6f12ea14b1a87.tar patches-8c3d8894562ac990e7b5f23e74e6f12ea14b1a87.tar.gz |
build: Add 'DL' silent rule.
* Makefile.am (AM_V_DL, AM_V_DL_, AM_V_DL_0): New variables.
* gnu-system.am (gnu/packages/bootstrap/x86_64-linux/guile-2.0.9.tar.xz)
(gnu/packages/bootstrap/i686-linux/guile-2.0.9.tar.xz)
(gnu/packages/bootstrap/armhf-linux/guile-2.0.11.tar.xz)
(gnu/packages/bootstrap/mips64el-linux/guile-2.0.9.tar.xz): Use $(AM_V_DL).
* build-aux/download.scm: Print a line break between target and origin.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/download.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/download.scm b/build-aux/download.scm index a107a887dc..1e91e4b87c 100644 --- a/build-aux/download.scm +++ b/build-aux/download.scm @@ -56,7 +56,7 @@ (match (command-line) ((_ file expected-hash) (let ((uri (file-name->uri file))) - (format #t "downloading file `~a' from `~a'...~%" + (format #t "downloading file `~a'~%from `~a'...~%" file (uri->string uri)) (let*-values (((resp data) (http-get uri #:decode-body? #f)) ((hash) (bytevector->base16-string (sha256 data))) |