diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-08 18:34:12 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-08 21:56:04 +0100 |
commit | f62df4cbf275964ebba1b88ae584caf3f629efd8 (patch) | |
tree | a8f078c715fe03040c54b931fc9523239059d3db /gnu/packages/ghostscript.scm | |
parent | b34c1258515e75bcc73be7911fd7d237db1dd14b (diff) | |
download | guix-f62df4cbf275964ebba1b88ae584caf3f629efd8.tar guix-f62df4cbf275964ebba1b88ae584caf3f629efd8.tar.gz |
gnu: libpaper: Do not build the static library.
* gnu/packages/ghostscript.scm (libpaper)[arguments]: Add #:configure-flags.
Diffstat (limited to 'gnu/packages/ghostscript.scm')
-rw-r--r-- | gnu/packages/ghostscript.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index 2b3a359bd6..c63fc2f9f9 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm @@ -90,7 +90,8 @@ Consortium standard (ICC), approved as ISO 15076-1.") (native-inputs `(("automake" ,automake))) ; For up to date 'config.guess' and 'config.sub'. (arguments - `(#:phases + `(#:configure-flags '("--disable-static") + #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-configure (lambda* (#:key inputs native-inputs #:allow-other-keys) |