substitute-binary: Avoid consing 'regexp-exec' arguments.

* guix/scripts/substitute-binary.scm (regexp-exec): Change formals
  to (rx str . rest).
This commit is contained in:
Ludovic Courtès 2014-04-01 23:07:29 +02:00
parent c6e9485924
commit 57832f2ce7

View file

@ -99,9 +99,9 @@ (define %narinfo-expired-cache-entry-removal-delay
(set! regexp-exec
(let ((real regexp-exec)
(lock (make-mutex)))
(lambda args
(lambda (rx str . rest)
(with-mutex lock
(apply real args)))))
(apply real rx str rest)))))
(define fields->alist
;; The narinfo format is really just like recutils.