diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-02-15 00:29:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-02-15 00:52:54 +0100 |
commit | 6956067b04269ecf666b3b4b1e63ce00bc1944c8 (patch) | |
tree | 9ed70f48a3ac1c98103f7928211bdae8ad862c50 /gnu/packages/make-bootstrap.scm | |
parent | 1dee732b81660ad2f6b4831c7e53c61e5ca32a0f (diff) | |
download | guix-6956067b04269ecf666b3b4b1e63ce00bc1944c8.tar guix-6956067b04269ecf666b3b4b1e63ce00bc1944c8.tar.gz |
gnu: guile-static: Add bindings for low-level Linux syscalls.
* gnu/packages/make-bootstrap.scm (%guile-static): Add
`guile-linux-syscalls.patch' as an input, and use it.
* gnu/packages/patches/guile-linux-syscalls.patch: New file.
* Makefile.am (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/make-bootstrap.scm')
-rw-r--r-- | gnu/packages/make-bootstrap.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index 9e9ba939da..218f5a8e25 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -412,6 +412,8 @@ ,(search-patch "guile-relocatable.patch")) ("patch/utf8" ,(search-patch "guile-default-utf8.patch")) + ("patch/syscalls" + ,(search-patch "guile-linux-syscalls.patch")) ,@(package-inputs guile-2.0))) (propagated-inputs `(("bdw-gc" ,libgc) @@ -443,7 +445,8 @@ ;; bootstrap. #:patches (list (assoc-ref %build-inputs "patch/relocatable") - (assoc-ref %build-inputs "patch/utf8")) + (assoc-ref %build-inputs "patch/utf8") + (assoc-ref %build-inputs "patch/syscalls")) ;; There are uses of `dynamic-link' in ;; {foreign,coverage}.test that don't fly here. |