Skip to content
Snippets Groups Projects
Commit 131edf67 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

distro: Fix glibc tarball to include *.so.*.

* distro/packages/base.scm (%glibc-stripped): Fix regexp to
  include *.so.* in the output.
parent 5155fb89
No related branches found
No related tags found
No related merge requests found
...@@ -2282,7 +2282,7 @@ (define %glibc-stripped ...@@ -2282,7 +2282,7 @@ (define %glibc-stripped
(copy-file file target) (copy-file file target)
(remove-store-references target))) (remove-store-references target)))
(find-files (string-append libc "/lib") (find-files (string-append libc "/lib")
"^(crt.*|ld.*|lib(c|m|dl|rt|pthread|nsl|util).*\\.so|libc_nonshared\\.a)$")) "^(crt.*|ld.*|lib(c|m|dl|rt|pthread|nsl|util).*\\.so(\\..*)?|libc_nonshared\\.a)$"))
(copy-recursively (string-append libc "/include") incdir) (copy-recursively (string-append libc "/include") incdir)
#t)))) #t))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment