diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-11-10 01:54:58 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-11-10 01:58:18 +0100 |
commit | 04cfe91efd41a89d7d01d2cd7b736213059dde5a (patch) | |
tree | 54125d7aba2fba095bf184259f504ff049c4ff13 /gnu | |
parent | 61fe56fc602376f24ad8cf826b6b3dd0e1983769 (diff) | |
download | guix-04cfe91efd41a89d7d01d2cd7b736213059dde5a.tar.gz |
gnu: LibreSSL: Make search paths single-entry.
Fixes <https://bugs.gnu.org/36817>. Reported by Katherine Cox-Buday <cox.katherine.e@gmail.com>. * gnu/packages/tls.scm (libressl)[native-search-paths]: Add SEPARATOR #F in search path specifications.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tls.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index 02609fd6cd..dd8f0fa5c7 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -515,15 +515,13 @@ required structures.") ;; Provide a TLS-enabled netcat. "--enable-nc"))) (native-search-paths - ;; FIXME: These two variables must designate a single file or directory - ;; and are not actually "search paths." In practice it works OK in - ;; user profiles because there's always just one item that matches the - ;; specification. (list (search-path-specification (variable "SSL_CERT_DIR") + (separator #f) ;single entry (files '("etc/ssl/certs"))) (search-path-specification (variable "SSL_CERT_FILE") + (separator #f) ;single entry (files '("etc/ssl/certs/ca-certificates.crt"))))) (home-page "https://www.libressl.org/") (synopsis "SSL/TLS implementation") |