diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2017-01-09 09:51:00 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2017-01-09 09:51:10 -0600 |
commit | ab4a1731d860690ec9b10f918d0370721065a66e (patch) | |
tree | 57e619a710f444bec7d48fbb189c007699ef942b | |
parent | c5793e7eb7f37cca85ff51dae059eab80adb24c4 (diff) | |
download | patches-ab4a1731d860690ec9b10f918d0370721065a66e.tar patches-ab4a1731d860690ec9b10f918d0370721065a66e.tar.gz |
gnu: guile-8sync: Add #t at end of setenv phase.
* gnu/packages/guile.scm: Add #t at end of setenv phase.
-rw-r--r-- | gnu/packages/guile.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index bb7aba3409..7ce6683681 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -1559,7 +1559,8 @@ and then run @command{scm example.scm}.") (add-before 'configure 'setenv (lambda _ ;; quiet warnings - (setenv "GUILE_AUTO_COMPILE" "0")))))) + (setenv "GUILE_AUTO_COMPILE" "0") + #t))))) (home-page "https://gnu.org/s/8sync/") (synopsis "Asynchronous actor model library for Guile") (description |