diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-11-20 18:35:33 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-11-20 18:36:05 +0100 |
commit | e11462c2e4d7189f8b2a69fcc19d3dbf68569fe1 (patch) | |
tree | 25b1bb1b9d9047cac0dbbb1fa57405aaef55fdd7 | |
parent | 40bbcaa65d90a8c869d9732af26cb6ceb8e81ca8 (diff) | |
download | patches-e11462c2e4d7189f8b2a69fcc19d3dbf68569fe1.tar patches-e11462c2e4d7189f8b2a69fcc19d3dbf68569fe1.tar.gz |
Revert "gnu: ccl: Include x86-headers and remove missing "contrib" folder."
This reverts commit d22ba64276c0bbacb77d0670635f67f053a16c6b, which
broke evaluations for armhf-linux.
-rw-r--r-- | gnu/packages/lisp.scm | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 6849cdd2bf..d401e5c456 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -533,12 +533,8 @@ statistical profiler, a code coverage tool, and many other extensions.") (install-file kernel libdir) (install-file heap libdir) - (let ((dirs '("lib" "library" "examples" "tools" "objc-bridge" - ,(match (%current-system) - ("x86_64-linux" - "x86-headers64") - ("i686-linux" - "x86-headers"))))) + (let ((dirs '("lib" "library" "examples" "contrib" + "tools" "objc-bridge"))) (for-each copy-recursively dirs (map (cut string-append libdir <>) dirs))) |