diff options
author | Reily Siegel <mail@reilysiegel.com> | 2021-12-23 18:04:28 -0500 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-01-12 17:43:02 +0100 |
commit | 4b770d3adf7be7291fc15015761bedfeb01aaf05 (patch) | |
tree | 883b128a763074e40db88449e00abe69551cc2ad | |
parent | 5e51860e4c7331b00b688bda81cfb7dd6da8e722 (diff) | |
download | guix-4b770d3adf7be7291fc15015761bedfeb01aaf05.tar.gz |
build: clojure-utils: Don't try to compile Clojure.
* guix/build/clojure-utils.scm (%aot-include): Add "data-readers" to the default list of files to exclude from ahead-of-time compilation.
-rw-r--r-- | guix/build/clojure-utils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/clojure-utils.scm b/guix/build/clojure-utils.scm index a9ffad3c8f..8817cab52a 100644 --- a/guix/build/clojure-utils.scm +++ b/guix/build/clojure-utils.scm @@ -135,7 +135,7 @@ all libraries found under the source directories." (define-with-docs %aot-exclude "A default list of symbols deciding what not to compile. See the doc string of '%aot-include' for more details." - '()) + '(data-readers)) (define-with-docs %tests? "Enable tests by default." |