diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-11-11 14:16:21 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-11-11 14:16:21 +0200 |
commit | 12c40ca91979f38f759cd6e976576ee0b2218543 (patch) | |
tree | 3f4b19277ca93c68e2fba0e5b4e7d714ded082ef | |
parent | a58adb8911f1a38392b7ebf335ec32b0c046f7d3 (diff) |
gnu: libcaca: Don't build static library.
* gnu/packages/video.scm (libcaca)[arguments]: Add configure-flag to
skip static library.
-rw-r--r-- | gnu/packages/video.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 9a16b50e58..76ea742a11 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1228,6 +1228,8 @@ ASS/SSA (Advanced Substation Alpha/SubStation Alpha) subtitle format.") (base32 "1x3j6yfyxl52adgnabycr0n38j9hx2j74la0hz0n8cnh9ry4d2qj")))) (build-system gnu-build-system) + (arguments + '(#:configure-flags '("--disable-static"))) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("freeglut" ,freeglut) |