diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-01-27 11:16:25 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-01-27 11:20:50 +0200 |
commit | f048c4f38b24bbaff4d098e8c8cb81cb11041d9c (patch) | |
tree | d3c6ea492fa8464f2358f0eb4b81e1d4b82be1b1 | |
parent | 3968722b7978c1834affbd9a4b3ad3dde62bc776 (diff) | |
download | guix-f048c4f38b24bbaff4d098e8c8cb81cb11041d9c.tar.gz |
gnu: guile-redis: Remove guild warnings.
* gnu/packages/guile-xyz.scm (guile-redis)[arguments]: Pass GUILE_AUTO_COMPILE=0 as make-flag to prevent guild warnings.
-rw-r--r-- | gnu/packages/guile-xyz.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 0526cf8ad8..c6f25bbdfb 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2443,6 +2443,8 @@ interface for reading articles in any format.") (base32 "1zk2x37lw6ygf7rwy71svnsian8lj51axpxmm66ah7dazn69swlm")))) (build-system gnu-build-system) + (arguments + '(#:make-flags '("GUILE_AUTO_COMPILE=0"))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) |