From 64c9d8382f8a5efd2540bdb7f2a07752a3371665 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Tue, 12 May 2015 09:42:30 -0600 Subject: [PATCH] complete-path repair for `raco make` Fix problem with 4e3a7c4 as exposed by the "make.rkt" test in the "compiler-test" package. --- racket/collects/setup/parallel-build.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/collects/setup/parallel-build.rkt b/racket/collects/setup/parallel-build.rkt index 411b87ec27..7cdd01e4ff 100644 --- a/racket/collects/setup/parallel-build.rkt +++ b/racket/collects/setup/parallel-build.rkt @@ -250,7 +250,7 @@ (define-values (dir file b) (split-path hd)) (set! filelist tail) (handler workerid 'start hd "" "" "") - (values hd (list (->bytes hd) (->bytes hd) null))])) + (values hd (list (->bytes hd) (->bytes (path->complete-path hd)) null))])) (define/public (has-jobs?) (not (null? filelist))) (define/public (jobs-cnt) (length filelist))