gnu: mediainfo: Change order of custom phases.

* gnu/packages/video.scm (mediainfo)[arguments]: Change to the build
directory before executing the autogen script.
This commit is contained in:
Efraim Flashner 2017-11-07 13:47:20 +02:00
parent 6541673354
commit 2f17187ff3
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 3 deletions

View File

@ -2332,10 +2332,11 @@ MPEG-2, MPEG-4, DVD (VOB)...
#:phases #:phases
;; build scripts not in root of archive ;; build scripts not in root of archive
(modify-phases %standard-phases (modify-phases %standard-phases
(add-before 'configure 'pre-configure (add-after 'unpack 'change-to-build-dir
(lambda _ (lambda _
(chdir "Project/GNU/CLI"))) (chdir "Project/GNU/CLI")
(add-after 'unpack 'autogen #t))
(add-after 'change-to-build-dir 'autogen
(lambda _ (lambda _
(zero? (system* "sh" "autogen.sh"))))))) (zero? (system* "sh" "autogen.sh")))))))
(home-page "https://mediaarea.net/en/MediaInfo") (home-page "https://mediaarea.net/en/MediaInfo")