~ruther/guix-local

9f55cf8d56bc10ebe54902a98942dc895ccd837c — Ludovic Courtès 13 years ago dcee50c
Remove leftover debugging expressions.

* guix/build/utils.scm (directory-exists?): Remove leftover debugging
  expressions.
1 files changed, 3 insertions(+), 4 deletions(-)

M guix/build/utils.scm
M guix/build/utils.scm => guix/build/utils.scm +3 -4
@@ 23,10 23,9 @@

(define (directory-exists? dir)
  "Return #t if DIR exists and is a directory."
  (pk 'dir-exists? dir
      (let ((s (pk 'stat dir (stat dir #f))))
     (and s
          (eq? 'directory (stat:type s))))))
  (let ((s (stat dir #f)))
    (and s
         (eq? 'directory (stat:type s)))))

(define (search-path-as-list sub-directories input-dirs)
  "Return the list of directories among SUB-DIRECTORIES that exist in