diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-10-23 21:59:09 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-10-23 21:59:09 +0200 |
commit | 131edf67a0d2493d5cd584f0af0e091c1586831e (patch) | |
tree | 03d0750186409efac28e451297769650414c8d1d | |
parent | 5155fb89b27d5eaf12a9e4a650dbf5bae2d332fb (diff) | |
download | patches-131edf67a0d2493d5cd584f0af0e091c1586831e.tar patches-131edf67a0d2493d5cd584f0af0e091c1586831e.tar.gz |
distro: Fix glibc tarball to include *.so.*.
* distro/packages/base.scm (%glibc-stripped): Fix regexp to
include *.so.* in the output.
-rw-r--r-- | distro/packages/base.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distro/packages/base.scm b/distro/packages/base.scm index 6847564159..312ae66f8a 100644 --- a/distro/packages/base.scm +++ b/distro/packages/base.scm @@ -2282,7 +2282,7 @@ store.") (copy-file file target) (remove-store-references target))) (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) #t)))) |