efraim pushed a commit to branch rust-team
in repository guix.
commit d59ee9e8673ce949592a4f05273e83089b6ee3ee
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Feb 20 15:30:13 2023 +0200
gnu: librsvg-bootstrap: Remove more precompiled libraries.
* gnu/packages/gnome.scm (librsvg-bootstrap)[source]: Adjust snippet to
also remove precompiled windows libraries.
---
gnu/packages/gnome.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 842493bd8f..7a42b5c2cb 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3718,7 +3718,10 @@ diagrams.")
(modules '((guix build utils)))
(snippet
'(begin
- (for-each delete-file (find-files "vendor" "\\.a$"))))))
+ (for-each delete-file
+ (append
+ (find-files "vendor" "\\.a$")
+ (find-files "vendor" "windows\\.lib$")))))))
(arguments
(substitute-keyword-arguments (package-arguments librsvg)
((#:vendor-dir _ "vendor") "vendor")