remove extraneous path->string conversion
This commit is contained in:
parent
e4ddd0718a
commit
bb71539233
|
@ -66,7 +66,7 @@
|
||||||
(lambda (p)
|
(lambda (p)
|
||||||
(set! did-one? #t)
|
(set! did-one? #t)
|
||||||
(when (verbose)
|
(when (verbose)
|
||||||
(printf " making ~s\n" (path->string p))))])
|
(printf " making ~s\n" p)))])
|
||||||
(for ([file source-files])
|
(for ([file source-files])
|
||||||
(unless (file-exists? file)
|
(unless (file-exists? file)
|
||||||
(error mzc-symbol "file does not exist: ~a" file))
|
(error mzc-symbol "file does not exist: ~a" file))
|
||||||
|
|
|
@ -510,7 +510,7 @@
|
||||||
(parameterize ([compile-notify-handler
|
(parameterize ([compile-notify-handler
|
||||||
(lambda (path)
|
(lambda (path)
|
||||||
(when (compiler:option:somewhat-verbose)
|
(when (compiler:option:somewhat-verbose)
|
||||||
(printf " making ~s\n" (path->string path))))])
|
(printf " making ~s\n" path)))])
|
||||||
(apply compile-collection-zos source-files))]
|
(apply compile-collection-zos source-files))]
|
||||||
[(cc)
|
[(cc)
|
||||||
(for ([file source-files])
|
(for ([file source-files])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user