Unset `LD_LIBRARY_PATH' in `build-expression->derivation'.
* guix/derivations.scm (build-expression->derivation)[prolog]: Unset `LD_LIBRARY_PATH'.
This commit is contained in:
parent
da62d3e5ae
commit
d44bc84b15
|
@ -550,7 +550,11 @@ considered to have failed."
|
||||||
(derivation-path->output-path drv
|
(derivation-path->output-path drv
|
||||||
sub)
|
sub)
|
||||||
drv)))))
|
drv)))))
|
||||||
inputs))))
|
inputs))
|
||||||
|
|
||||||
|
;; Guile sets it, but remove it to avoid conflicts when
|
||||||
|
;; building Guile-using packages.
|
||||||
|
(unsetenv "LD_LIBRARY_PATH")))
|
||||||
(builder (add-text-to-store store
|
(builder (add-text-to-store store
|
||||||
(string-append name "-guile-builder")
|
(string-append name "-guile-builder")
|
||||||
(string-append
|
(string-append
|
||||||
|
|
Loading…
Reference in New Issue