gnu: openssl: Make search paths single-entry.
* gnu/packages/tls.scm (openssl)[native-search-paths]: Add (separator #f) on SSL_CERT_DIR and SSL_CERT_FILE; set SSL_CERT_FILE to (file-type 'regular).
This commit is contained in:
parent
bdf0b6fcff
commit
5d7a47cc30
|
@ -366,15 +366,14 @@ required structures.")
|
|||
,version "/misc"))
|
||||
#t))))))
|
||||
(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")
|
||||
(file-type 'regular)
|
||||
(separator #f) ;single entry
|
||||
(files '("etc/ssl/certs/ca-certificates.crt")))))
|
||||
(synopsis "SSL/TLS implementation")
|
||||
(description
|
||||
|
|
Loading…
Reference in New Issue