[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#43273] [PATCH] gnu: taglib: Fix 'taglib-config --libs' -L flag.
From: |
Ludovic Courtès |
Subject: |
[bug#43273] [PATCH] gnu: taglib: Fix 'taglib-config --libs' -L flag. |
Date: |
Wed, 09 Sep 2020 10:28:59 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
Michael Rohleder <mike@rohleder.de> skribis:
> * gnu/packages/mp3.scm (taglib): Add "" around the substitution of
> ZLIB_LIBRARIES_FLAGS.
> ---
> 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 a7574f0cf9..2e9b023407 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)")))
> + " -lz\")")))
As it turns out, we were also missing “/lib” there… I’ve added it, and
hopefully now we’re all fine!
Ludo’.