diff options
author | Leo Famulari <leo@famulari.name> | 2017-01-23 16:09:15 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-01-23 17:23:03 -0500 |
commit | 147c6b391b3264fa6606841452e2c8049a01d983 (patch) | |
tree | ac8de42e3920098015c389eee26e0ebb8fd71581 /gnu/packages | |
parent | f2ea722ae731d6094948d58b8287213d056a178a (diff) | |
download | guix-147c6b391b3264fa6606841452e2c8049a01d983.tar guix-147c6b391b3264fa6606841452e2c8049a01d983.tar.gz |
gnu: orpheus: Don't replace 'sh' reference with 'bash'.
* gnu/packages/orpheus.scm (orpheus)[arguments]: Use (which "sh") instead of
(which "bash") in 'patch-shells' phase.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/orpheus.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/orpheus.scm b/gnu/packages/orpheus.scm index 39118c9abc..d672ebce75 100644 --- a/gnu/packages/orpheus.scm +++ b/gnu/packages/orpheus.scm @@ -90,7 +90,7 @@ (substitute* '("src/mp3track.cc" "src/streamtrack.cc" "src/oggtrack.cc") - (("/bin/sh") (which "bash"))) + (("/bin/sh") (which "sh"))) #t))))) (home-page "http://thekonst.net/en/orpheus") (synopsis "Text-mode audio player") |