mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 06:42:14 -05:00
gnu: handbrake: Return #t from all phases.
* gnu/packages/video.scm (handbrake)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
bf6edb9596
commit
da6f345c71
1 changed files with 4 additions and 4 deletions
|
@ -2363,7 +2363,7 @@ (define-public handbrake
|
|||
;; Patch the Makefile so that it doesn't bootstrap again.
|
||||
(substitute* "gtk/module.rules"
|
||||
((".*autogen\\.sh.*") ""))
|
||||
(zero? (system* "sh" "./gtk/autogen.sh"))))
|
||||
(invoke "sh" "./gtk/autogen.sh")))
|
||||
(add-before 'configure 'disable-contrib
|
||||
(lambda _
|
||||
(substitute* "make/include/main.defs"
|
||||
|
@ -2385,9 +2385,9 @@ (define-public handbrake
|
|||
;; errors on unrecognized arguments,
|
||||
;; e.g. --enable-fast-install
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(zero? (apply system* "./configure"
|
||||
(string-append "--prefix=" out)
|
||||
(or configure-flags '()))))))
|
||||
(apply invoke "./configure"
|
||||
(string-append "--prefix=" out)
|
||||
(or configure-flags '())))))
|
||||
(add-after 'configure 'chdir-build
|
||||
(lambda _ (chdir "./build") #t)))))
|
||||
(home-page "https://handbrake.fr")
|
||||
|
|
Loading…
Reference in a new issue