[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: libmediainfo: Adjust build phases.
From: |
Efraim Flashner |
Subject: |
01/01: gnu: libmediainfo: Adjust build phases. |
Date: |
Tue, 5 Sep 2017 14:51:33 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 0cae36b5e5bd88eefea30b122acd41290a966980
Author: Efraim Flashner <address@hidden>
Date: Tue Sep 5 21:25:24 2017 +0300
gnu: libmediainfo: Adjust build phases.
* gnu/packages/video.scm (libmediainfo)[arguments]: Change to the build
directory before running autogen.
---
gnu/packages/video.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 3924e93..ab75534 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -2250,10 +2250,11 @@ practically any type of media.")
#:phases
;; build scripts not in root of archive
(modify-phases %standard-phases
- (add-before 'configure 'pre-configure
+ (add-after 'unpack 'change-to-build-dir
(lambda _
- (chdir "Project/GNU/Library")))
- (add-after 'unpack 'autogen
+ (chdir "Project/GNU/Library")
+ #t))
+ (add-after 'change-to-build-dir 'autogen
(lambda _
(zero? (system* "sh" "autogen.sh")))))))
(home-page "https://mediaarea.net/en/MediaInfo")