distro: bash-final: Link with `-static-libgcc'.

* distro/packages/base.scm (bash-final): Pass through
  `static-libgcc-package'.
This commit is contained in:
Ludovic Courtès 2012-11-05 23:50:34 +01:00
parent 53dcd5eea1
commit ce1ef15b25

View file

@ -940,8 +940,11 @@ (define %boot3-inputs
,@(alist-delete "gcc" %boot2-inputs)))
(define-public bash-final
;; Link with `-static-libgcc' to make sure we don't retain a reference
;; to the bootstrap GCC.
(package-with-bootstrap-guile
(package-with-explicit-inputs bash %boot3-inputs
(package-with-explicit-inputs (static-libgcc-package bash)
%boot3-inputs
(current-source-location)
#:guile %bootstrap-guile)))