guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: taglib: Fix 'taglib-config --libs' -L flag.


From: guix-commits
Subject: branch master updated: gnu: taglib: Fix 'taglib-config --libs' -L flag.
Date: Wed, 09 Sep 2020 04:28:09 -0400

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 219e0a4  gnu: taglib: Fix 'taglib-config --libs' -L flag.
219e0a4 is described below

commit 219e0a497e734ebd5705a30090a76d2894c4c31b
Author: Michael Rohleder <mike@rohleder.de>
AuthorDate: Tue Sep 8 12:48:35 2020 +0200

    gnu: taglib: Fix 'taglib-config --libs' -L flag.
    
    * gnu/packages/mp3.scm (taglib): Add "" around the substitution of
    ZLIB_LIBRARIES_FLAGS and add "/lib".
    
    Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/mp3.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm
index a7574f0..fdc8ba8 100644
--- a/gnu/packages/mp3.scm
+++ b/gnu/packages/mp3.scm
@@ -182,9 +182,9 @@ a highly stable and efficient implementation.")
                        ;; flag for zlib.
                        (substitute* "CMakeLists.txt"
                          (("set\\(ZLIB_LIBRARIES_FLAGS -lz\\)")
-                          (string-append "set(ZLIB_LIBRARIES_FLAGS -L"
+                          (string-append "set(ZLIB_LIBRARIES_FLAGS \"-L"
                                          (assoc-ref inputs "zlib")
-                                         " -lz)")))
+                                         "/lib -lz\")")))
                        #t)))))
     (inputs `(("zlib" ,zlib)))
     (home-page "https://taglib.org";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]