From d44f8178656d8b37a76ebfa906e2642c63593998 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 8 May 2013 11:23:14 -0400 Subject: [PATCH] raco setup: fix subcollection traversal Closes PR 13740 --- collects/setup/setup-unit.rkt | 1 + 1 file changed, 1 insertion(+) diff --git a/collects/setup/setup-unit.rkt b/collects/setup/setup-unit.rkt index 0b37db37a3..5ced5b7c48 100644 --- a/collects/setup/setup-unit.rkt +++ b/collects/setup/setup-unit.rkt @@ -404,6 +404,7 @@ (define (build-collection-tree cc) (define (make-child-cc parent-cc name) (collection-cc! (append (cc-collection parent-cc) (list name)) + #:path (build-path (cc-path parent-cc) name) #:info-root (cc-info-root cc) #:info-path (cc-info-path cc) #:info-path-mode (cc-info-path-mode cc)