civodul pushed a commit to branch core-updates
in repository guix.
commit 6d49ca3bad613700b539c30272e164207455735b
Author: Ludovic Courtès <[email protected]>
Date: Mon May 2 15:41:23 2016 +0200
gnu: pcre: Add "bin" output.
* gnu/packages/pcre.scm (pcre)[outputs]: Add "bin".
---
gnu/packages/pcre.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm
index 248242a..42a6a9b 100644
--- a/gnu/packages/pcre.scm
+++ b/gnu/packages/pcre.scm
@@ -45,8 +45,9 @@
"1pvra19ljkr5ky35y2iywjnsckrs9ch2anrf5b0dc91hw8v2vq5r"))
(patches (list (search-patch "pcre-CVE-2016-3191.patch")))))
(build-system gnu-build-system)
- (outputs '("out"
- "doc")) ;1.8 MiB of HTML
+ (outputs '("out" ;library & headers
+ "bin" ;depends on Readline (adds 20MiB to the closure)
+ "doc")) ;1.8 MiB of HTML
(inputs `(("bzip2" ,bzip2)
("readline" ,readline)
("zlib" ,zlib)))