tests: Unset 'LOCPATH' before running bootstrap program.
Reported by Mark H Weaver <mhw@netris.org>. * tests/build-utils.scm ("wrap-program, one input, multiple calls"): Add 'unsetenv' call.
This commit is contained in:
parent
5c3c1427fa
commit
12cd4dd3a9
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2012, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -128,6 +128,11 @@
|
||||||
(inputs `(("bash" ,(search-bootstrap-binary "bash"
|
(inputs `(("bash" ,(search-bootstrap-binary "bash"
|
||||||
(%current-system)))))))
|
(%current-system)))))))
|
||||||
(d (package-derivation %store p)))
|
(d (package-derivation %store p)))
|
||||||
|
|
||||||
|
;; The bootstrap Bash is linked against an old libc and would abort with
|
||||||
|
;; an assertion failure when trying to load incompatible locale data.
|
||||||
|
(unsetenv "LOCPATH")
|
||||||
|
|
||||||
(and (build-derivations %store (pk 'drv d (list d)))
|
(and (build-derivations %store (pk 'drv d (list d)))
|
||||||
(let* ((p (derivation->output-path d))
|
(let* ((p (derivation->output-path d))
|
||||||
(foo (string-append p "/foo"))
|
(foo (string-append p "/foo"))
|
||||||
|
|
Loading…
Reference in New Issue