nckx pushed a commit to branch master
in repository guix.
commit 3b2a26219f4291565edc39f5e48a8c9b3ca76381
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Sat Nov 21 15:15:57 2020 +0100
gnu: escpr: Omit static library.
* gnu/packages/cups.scm (escpr)[arguments]: Add "--disable-static"
to #:configure-flags.
---
gnu/packages/cups.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm
index 1e25d54..b2d7b95 100644
--- a/gnu/packages/cups.scm
+++ b/gnu/packages/cups.scm
@@ -766,7 +766,8 @@ HP@tie{}LaserJet, and possibly other printers. See
@file{README} for details.")
((srfi srfi-26)
,@%gnu-build-system-modules)
#:configure-flags
- `(,(string-append "--prefix="
+ `("--disable-static"
+ ,(string-append "--prefix="
(assoc-ref %outputs "out"))
,(string-append "--with-cupsfilterdir="
(assoc-ref %outputs "out") "/lib/cups/filter")