gnu: openssl: Keep .dll.a files in main output.
* gnu/packages/tls.scm (openssl) [phase move-static-libraries]: Do not move .dll.a files to the static output when targetting mingw. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
4337e8466e
commit
e167044fad
@ -507,7 +507,13 @@ OpenSSL for TARGET."
|
|||||||
(for-each (lambda (file)
|
(for-each (lambda (file)
|
||||||
(install-file file slib)
|
(install-file file slib)
|
||||||
(delete-file file))
|
(delete-file file))
|
||||||
(find-files lib "\\.a$")))))
|
(find-files
|
||||||
|
lib
|
||||||
|
#$(if (target-mingw?)
|
||||||
|
'(lambda (filename _)
|
||||||
|
(and (string-suffix? ".a" filename)
|
||||||
|
(not (string-suffix? ".dll.a" filename))))
|
||||||
|
"\\.a$"))))))
|
||||||
(add-after 'install 'move-extra-documentation
|
(add-after 'install 'move-extra-documentation
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Move man pages and full HTML documentation to "doc".
|
;; Move man pages and full HTML documentation to "doc".
|
||||||
|
Loading…
x
Reference in New Issue
Block a user