diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-06-17 15:20:34 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-06-17 19:32:43 +0200 |
commit | 03686f26ccefcf3d0e77105f32964008b7f45ff6 (patch) | |
tree | 29f6861fe79ecd5d8ec10d5a621a7fa0f213c62d /guix | |
parent | 2ee1cce324bd200096adfa73cfe6a3fe3a4e87de (diff) |
build-system/gnu: Remove Hydra-specific code from 'gnu-dist'.
* guix/build/gnu-dist.scm (install-dist): Remove code for
'hydra-build-products'.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build/gnu-dist.scm | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/guix/build/gnu-dist.scm b/guix/build/gnu-dist.scm index f82c721da7..727ddfa312 100644 --- a/guix/build/gnu-dist.scm +++ b/guix/build/gnu-dist.scm @@ -50,16 +50,6 @@ (for-each (lambda (tarball) (copy-file tarball (string-append out "/" tarball))) out) - - (mkdir meta) - (call-with-output-file (string-append out "/hydra-build-products") - (lambda (port) - (for-each (lambda (tarball) - ;; This tells Hydra's what kind of build products we have, - ;; so it can represent them nicely. See `product-list.tt' - ;; in Hydra for details. - (format port "file source-dist ~a/~a~%" out tarball)) - tarballs))) #t)) (define %dist-phases |