diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-12-09 17:18:30 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-12-09 18:32:05 +0100 |
commit | 24ba2cee2b1671c5dae36bb4cdba139f1fd09023 (patch) | |
tree | 6362a8814da8b3433548c2c594284adcd0e7708f /gnu | |
parent | 4bd6f1d1d65b90ca90c3305404d820c5f4ca4427 (diff) | |
download | patches-24ba2cee2b1671c5dae36bb4cdba139f1fd09023.tar patches-24ba2cee2b1671c5dae36bb4cdba139f1fd09023.tar.gz |
gnu: shepherd: Use Guile with the finalization crash bug-fix.
Fixes <https://bugs.gnu.org/37757>.
Reported by Jesse Gibbons <jgibbons2357@gmail.com>.
* gnu/packages/admin.scm (shepherd)[native-inputs, inputs]: Use
GUILE-2.2/BUG-FIX instead of GUILE-2.2.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/admin.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 6fbceb4421..63921e0229 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -209,10 +209,10 @@ and provides a \"top-like\" mode (monitoring).") `(("pkg-config" ,pkg-config) ;; This is the Guile we use as a cross-compiler... - ("guile" ,guile-2.2))) + ("guile" ,guile-2.2/bug-fix))) (inputs ;; ... and this is the one that appears in shebangs when cross-compiling. - `(("guile" ,guile-2.2) + `(("guile" ,guile-2.2/bug-fix) ;for <https://bugs.gnu.org/37757> ;; The 'shepherd' command uses Readline when used interactively. It's ;; an unusual use case though, so we don't propagate it. |