gnu: le-certs: Use invoke.
* gnu/packages/certs.scm (le-certs)[arguments]: Use invoke in the builder.
This commit is contained in:
parent
dbf5b1186e
commit
4530e854f1
1 changed files with 3 additions and 4 deletions
|
@ -170,10 +170,9 @@ taken from the NSS package and thus ultimately from the Mozilla project.")
|
||||||
;; Create hash symlinks suitable for OpenSSL ('SSL_CERT_DIR' and
|
;; Create hash symlinks suitable for OpenSSL ('SSL_CERT_DIR' and
|
||||||
;; similar.)
|
;; similar.)
|
||||||
(chdir (string-append %output "/etc/ssl/certs"))
|
(chdir (string-append %output "/etc/ssl/certs"))
|
||||||
(unless (zero? (system* (string-append perl "/bin/perl")
|
(invoke (string-append perl "/bin/perl")
|
||||||
(string-append openssl "/bin/c_rehash")
|
(string-append openssl "/bin/c_rehash")
|
||||||
"."))
|
".")))))
|
||||||
(error "'c_rehash' failed" openssl))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("openssl" ,openssl)
|
`(("openssl" ,openssl)
|
||||||
("perl" ,perl))) ;for 'c_rehash'
|
("perl" ,perl))) ;for 'c_rehash'
|
||||||
|
|
Reference in a new issue