mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: avidemux: Don't replace 'sh' reference with 'bash'.
* gnu/packages/video.scm (avidemux)[arguments]: Use (which "sh") instead of (which "bash") in 'repack-ffmpeg' phase.
This commit is contained in:
parent
344498c736
commit
2fed40421d
1 changed files with 1 additions and 1 deletions
|
@ -1228,7 +1228,7 @@ (define-public avidemux
|
|||
(lambda _
|
||||
(with-directory-excursion "avidemux_core/ffmpeg_package"
|
||||
(substitute* "ffmpeg-2.7.6/configure"
|
||||
(("#! /bin/sh") (string-append "#!" (which "bash"))))
|
||||
(("#! /bin/sh") (string-append "#!" (which "sh"))))
|
||||
(system* "tar" "cjf" "ffmpeg-2.7.6.tar.bz2" "ffmpeg-2.7.6"
|
||||
;; avoid non-determinism in the archive
|
||||
"--sort=name" "--mtime=@0"
|
||||
|
|
Loading…
Reference in a new issue