diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2018-11-18 10:38:54 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2018-11-18 10:39:47 +0100 |
commit | d22ba64276c0bbacb77d0670635f67f053a16c6b (patch) | |
tree | 6871cc1a2f6326e01afd1dd2f3a1180ecb8701ca /gnu | |
parent | f8cba3ff4fc6aed0c539700aa47b6e8f4c25c34d (diff) | |
download | guix-d22ba64276c0bbacb77d0670635f67f053a16c6b.tar.gz guix-d22ba64276c0bbacb77d0670635f67f053a16c6b.zip |
gnu: ccl: Include x86-headers and remove missing "contrib" folder.
* gnu/packages/lisp.scm (ccl): Include x86-headers and remove missing "contrib" folder.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 9fb25a15a2..dcdd551884 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -530,8 +530,12 @@ statistical profiler, a code coverage tool, and many other extensions.") (install-file kernel libdir) (install-file heap libdir) - (let ((dirs '("lib" "library" "examples" "contrib" - "tools" "objc-bridge"))) + (let ((dirs '("lib" "library" "examples" "tools" "objc-bridge" + ,(match (%current-system) + ("x86_64-linux" + "x86-headers64") + ("i686-linux" + "x86-headers"))))) (for-each copy-recursively dirs (map (cut string-append libdir <>) dirs))) |