From d398e2c2426cd50a97603b0be6da999e67947def Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 24 Oct 2012 00:09:01 +0200 Subject: distro: Update bootstrap glibc package. * distro/packages/base.scm (%bootstrap-glibc): Update initial regexp to make it less Nixish. Update hash to new tarball. --- distro/packages/base.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'distro') diff --git a/distro/packages/base.scm b/distro/packages/base.scm index 6506553558..e2bb061dad 100644 --- a/distro/packages/base.scm +++ b/distro/packages/base.scm @@ -1543,8 +1543,8 @@ check whether everything is alright." ;; Patch libc.so so it refers to the right path. (substitute* "lib/libc.so" - (("/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc([^/]+)/") - (string-append "/" (basename out) "/")))))))) + (("/[^ ]+/lib/(libc|ld)" _ prefix) + (string-append out "/lib/" prefix)))))))) (inputs `(("tar" ,(lambda (system) (search-bootstrap-binary "tar" system))) @@ -1557,7 +1557,8 @@ check whether everything is alright." (uri (string-append %bootstrap-base-url "/" system "/glibc-2.16.0.tar.xz")) (sha256 - (base32 "1qbqmzjxsda74qmzl2rb7049iajary7lvznbym8m2xvqvyid8r2l")))))))) + (base32 + "1xamrl1d6y3b0l98gmih4ac8aiqnfps1rhb62z0wxr7chisiqwan")))))))) (description "Bootstrap binaries and headers of the GNU C Library") (long-description #f) (home-page #f))) -- cgit v1.2.3