diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-04-22 14:40:51 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-04-22 14:42:15 +0200 |
commit | 25a49294caf2386e65fc1b12a2508324be0b1cc2 (patch) | |
tree | d8093fb4de2ea7400d7064c3531bde94d8dd4b2f /guix/build | |
parent | 8a8e2d2ed5932a13a73583d32b152133d28aedf5 (diff) | |
download | gnu-guix-25a49294caf2386e65fc1b12a2508324be0b1cc2.tar gnu-guix-25a49294caf2386e65fc1b12a2508324be0b1cc2.tar.gz |
cache: Work around 'time-monotonic' bug in Guile 2.2.2.
* guix/cache.scm (time-monotonic) [guile-2.2]: New variable.
* tests/cache.scm (time-monotonic) [guile-2.2]: Likewise.
* guix/build/download.scm (time-monotonic) [guile-2.2]: Adjust comment:
it's a 2.2.2 bug.
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/download.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/guix/build/download.scm b/guix/build/download.scm index 6563341b9f..67a8952599 100644 --- a/guix/build/download.scm +++ b/guix/build/download.scm @@ -142,9 +142,8 @@ Otherwise return STORE-PATH." (cond-expand (guile-2.2 - ;; Guile 2.2.0 to 2.2.2 included has a bug whereby 'time-monotonic' objects - ;; have seconds and nanoseconds swapped (fixed in Guile commit 886ac3e). - ;; Work around it. + ;; Guile 2.2.2 has a bug whereby 'time-monotonic' objects have seconds and + ;; nanoseconds swapped (fixed in Guile commit 886ac3e). Work around it. (define time-monotonic time-tai)) (else #t)) |