grafts: Actually cache grafts during the derivation DAG traversal.
This fixes a regression introduced in
d38bc9a9f6
whereby the cache was
effectively disabled.
Reported by Thomas Danckaert <thomas.danckaert@gmail.com>.
* guix/grafts.scm (with-cache): In the cache miss case, wrap body in
'mbegin'.
This commit is contained in:
parent
b09903619f
commit
90ad5c8836
|
@ -222,8 +222,9 @@ available."
|
||||||
(return result))
|
(return result))
|
||||||
(#f ;cache miss
|
(#f ;cache miss
|
||||||
(mlet %state-monad ((result (begin exp ...)))
|
(mlet %state-monad ((result (begin exp ...)))
|
||||||
(set-current-state (vhash-consq key result cache))
|
(mbegin %state-monad
|
||||||
(return result))))))
|
(set-current-state (vhash-consq key result cache))
|
||||||
|
(return result)))))))
|
||||||
|
|
||||||
(define* (cumulative-grafts store drv grafts
|
(define* (cumulative-grafts store drv grafts
|
||||||
references
|
references
|
||||||
|
|
Loading…
Reference in New Issue