mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 11:00:36 +02:00
Merge branch 'master' into core-updates
This commit is contained in:
commit
ca0635b4ba
43 changed files with 1474 additions and 455 deletions
|
@ -183,6 +183,17 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
|
|||
(inputs (if (%current-target-system)
|
||||
`(("bash" ,static-bash))
|
||||
'()))))
|
||||
(tar (package (inherit tar)
|
||||
(arguments
|
||||
'(#:phases (modify-phases %standard-phases
|
||||
(add-before 'build 'set-shell-file-name
|
||||
(lambda _
|
||||
;; Do not use "/bin/sh" to run programs; see
|
||||
;; <http://lists.gnu.org/archive/html/guix-devel/2016-09/msg02272.html>.
|
||||
(substitute* "src/system.c"
|
||||
(("/bin/sh") "sh")
|
||||
(("execv ") "execvp "))
|
||||
#t)))))))
|
||||
(finalize (compose static-package
|
||||
package-with-relocatable-glibc)))
|
||||
`(,@(map (match-lambda
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue