diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-21 15:15:57 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-21 22:55:04 +0100 |
commit | 3b2a26219f4291565edc39f5e48a8c9b3ca76381 (patch) | |
tree | 7451ac4d42699ebb8ee2194f40084401f8231a96 /gnu/packages/cups.scm | |
parent | 24bb392c0b0f6dc7735c5224a900a05edc2431e2 (diff) |
gnu: escpr: Omit static library.
* gnu/packages/cups.scm (escpr)[arguments]: Add "--disable-static"
to #:configure-flags.
Diffstat (limited to 'gnu/packages/cups.scm')
-rw-r--r-- | gnu/packages/cups.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 1e25d545b2..b2d7b952b9 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") |