From a0b2b4f1e95b876cbf5a3b8ca25f901504fc1acf Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sun, 23 Apr 2023 20:20:51 -0400 Subject: [PATCH] gnu: libmediainfo and mediainfo: Fix build. * gnu/packages/video.scm (libmediainfo, mediainfo)[arguments]: Add a shebang to the autogen.sh script in the 'change-to-build-dir' phases. --- gnu/packages/video.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 240730844a..5d7347cf5e 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -4183,6 +4183,13 @@ (define-public libmediainfo (add-after 'unpack 'change-to-build-dir (lambda _ (chdir "Project/GNU/Library") + ;; XXX Add a shebang to the script to avoid an error like: + ;; "In execvp of ./autogen.sh: Exec format error" + ;; The string replaced is just a code comment. + ;; See the similar substitution made in mediainfo. + (substitute* "autogen.sh" + (("#libtoolize") + "#!/bin/sh")) #t))))) (home-page "https://mediaarea.net/en/MediaInfo") (synopsis "Library for retrieving media metadata") @@ -4238,6 +4245,13 @@ (define-public mediainfo (add-after 'unpack 'change-to-build-dir (lambda _ (chdir "Project/GNU/CLI") + ;; XXX Add a shebang to the script to avoid an error like: + ;; "In execvp of ./autogen.sh: Exec format error" + ;; The string replaced is just a code comment. + ;; See the similar substitution made in libmediainfo. + (substitute* "autogen.sh" + (("#libtoolize") + "#!/bin/sh")) #t))))) (home-page "https://mediaarea.net/en/MediaInfo") (synopsis "Utility for reading media metadata")