diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-05-23 15:02:55 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-05-23 15:02:55 +0200 |
commit | 2cf0221f0e5d380ca164a2e89f5da6980ea40731 (patch) | |
tree | 645a45f8777614279498d34157be353a48be6f3f /gnu/packages/pcre.scm | |
parent | bc73a84398fa54b0a11a80c749bf78eb0a58dbe6 (diff) | |
download | patches-2cf0221f0e5d380ca164a2e89f5da6980ea40731.tar patches-2cf0221f0e5d380ca164a2e89f5da6980ea40731.tar.gz |
gnu: pcre: Remove now-unneeded replacement.
* gnu/packages/pcre.scm (pcre)[replacement]: Remove.
(pcre-fixed): Remove.
Diffstat (limited to 'gnu/packages/pcre.scm')
-rw-r--r-- | gnu/packages/pcre.scm | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm index 42a6a9b0c4..aea7d6fcb3 100644 --- a/gnu/packages/pcre.scm +++ b/gnu/packages/pcre.scm @@ -31,7 +31,6 @@ (package (name "pcre") (version "8.38") - (replacement pcre-fixed) (source (origin (method url-fetch) (uri (list @@ -70,13 +69,6 @@ POSIX regular expression API.") (license license:bsd-3) (home-page "http://www.pcre.org/"))) -(define pcre-fixed ;for CVE-2016-3191 - (package - (inherit pcre) - (source (origin - (inherit (package-source pcre)) - (patches (search-patches "pcre-CVE-2016-3191.patch")))))) - (define-public pcre2 (package (name "pcre2") |