mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: mplayer: Don't replace 'sh' reference with 'bash'.
* gnu/packages/video.scm (mplayer)[arguments]: Use (which "sh") instead of (which "bash") in 'configure' phase.
This commit is contained in:
parent
47734a56d6
commit
2564b7c2df
1 changed files with 1 additions and 1 deletions
|
@ -796,7 +796,7 @@ treaming protocols.")
|
|||
(let ((out (assoc-ref outputs "out"))
|
||||
(libx11 (assoc-ref inputs "libx11")))
|
||||
(substitute* "configure"
|
||||
(("#! /bin/sh") (string-append "#!" (which "bash"))))
|
||||
(("#! /bin/sh") (string-append "#!" (which "sh"))))
|
||||
(setenv "SHELL" (which "bash"))
|
||||
(setenv "CONFIG_SHELL" (which "bash"))
|
||||
(zero? (system*
|
||||
|
|
Loading…
Reference in a new issue