mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
installer: Run wrapped program with 'execl', not 'system'.
'system' invokes /bin/sh, which is certainly not needed here. * gnu/installer.scm (installer-program): Use 'execl', not 'system'.
This commit is contained in:
parent
538b99f31f
commit
6c849cdb98
1 changed files with 2 additions and 1 deletions
|
@ -389,4 +389,5 @@ (define installer-builder
|
||||||
;; some reason, unicode support is not correctly installed
|
;; some reason, unicode support is not correctly installed
|
||||||
;; when calling this in 'installer-builder'.
|
;; when calling this in 'installer-builder'.
|
||||||
(setenv "LANG" "en_US.UTF-8")
|
(setenv "LANG" "en_US.UTF-8")
|
||||||
(system #$(program-file "installer-real" installer-builder)))))
|
(execl #$(program-file "installer-real" installer-builder)
|
||||||
|
"installer-real"))))
|
||||||
|
|
Loading…
Reference in a new issue