Skip to content
Snippets Groups Projects
Unverified Commit 4debffad authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

maint: Adjust 'check-final-inputs-self-contained' for glibc:static.

This change is necessary to cope with
6dff905e.

* build-aux/check-final-inputs-self-contained.scm (final-inputs): Change
'match' pattern to match (LABEL PACKAGE OUTPUT).
parent c91e0f1a
No related branches found
No related tags found
No related merge requests found
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
...@@ -33,23 +33,23 @@ ...@@ -33,23 +33,23 @@
(define (final-inputs store system) (define (final-inputs store system)
"Return the list of outputs directories of the final inputs for SYSTEM." "Return the list of outputs directories of the final inputs for SYSTEM."
(append-map (match-lambda (append-map (match-lambda
((name package) ((or (name package) (name package _))
(let ((drv (package-derivation store package system))) (let ((drv (package-derivation store package system)))
;; Libc's 'debug' output refers to gcc-cross-boot0, but it's ;; Libc's 'debug' output refers to gcc-cross-boot0, but it's
;; hard to avoid, so we tolerate it. This should be the ;; hard to avoid, so we tolerate it. This should be the
;; only exception. Likewise, 'bash:include' depends on ;; only exception. Likewise, 'bash:include' depends on
;; bootstrap-binaries via its 'Makefile.inc' (FIXME). ;; bootstrap-binaries via its 'Makefile.inc' (FIXME).
(filter-map (match-lambda (filter-map (match-lambda
(("debug" . directory) (("debug" . directory)
(if (string=? "glibc" (package-name package)) (if (string=? "glibc" (package-name package))
#f #f
directory)) directory))
(("include" . directory) (("include" . directory)
(if (string=? "bash" (package-name package)) (if (string=? "bash" (package-name package))
#f #f
directory)) directory))
((_ . directory) directory)) ((_ . directory) directory))
(derivation->output-paths drv))))) (derivation->output-paths drv)))))
%final-inputs)) %final-inputs))
(define (assert-valid-substitute substitute) (define (assert-valid-substitute substitute)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment