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>
This commit is contained in:
parent
65d96ea4b8
commit
219e0a497e
1 changed files with 2 additions and 2 deletions
|
@ -182,9 +182,9 @@ a highly stable and efficient implementation.")
|
||||||
;; flag for zlib.
|
;; flag for zlib.
|
||||||
(substitute* "CMakeLists.txt"
|
(substitute* "CMakeLists.txt"
|
||||||
(("set\\(ZLIB_LIBRARIES_FLAGS -lz\\)")
|
(("set\\(ZLIB_LIBRARIES_FLAGS -lz\\)")
|
||||||
(string-append "set(ZLIB_LIBRARIES_FLAGS -L"
|
(string-append "set(ZLIB_LIBRARIES_FLAGS \"-L"
|
||||||
(assoc-ref inputs "zlib")
|
(assoc-ref inputs "zlib")
|
||||||
" -lz)")))
|
"/lib -lz\")")))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs `(("zlib" ,zlib)))
|
(inputs `(("zlib" ,zlib)))
|
||||||
(home-page "https://taglib.org")
|
(home-page "https://taglib.org")
|
||||||
|
|
Reference in a new issue