From 43dd4c7ab94e1f4cf912ef31c1647d7ea76df204 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 28 Aug 2011 19:20:19 -0600 Subject: [PATCH] path normalization in setup/scribble Needed so that `raco setup' doesn't rebuild documents as it decides, say, that the "games/cards" document depends on "games/scribblings\\games.scrbl" instead of "games/scribblings/games.scrbl". Has this been needed for a while, or did it somehow become needed with recent changes to `raco setup' to support `raco link'? --- collects/setup/scribble.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/setup/scribble.rkt b/collects/setup/scribble.rkt index 6bb685c592..3ca3bb241d 100644 --- a/collects/setup/scribble.rkt +++ b/collects/setup/scribble.rkt @@ -117,7 +117,7 @@ (list (directory-record-maj rec) (list '= (directory-record-min rec))))) (cdr spec)))) - (build-path dir (car d)) + (simplify-path (build-path dir (car d)) #f) (doc-path dir (cadddr d) flags under-main?) flags under-main? (caddr d)))) s)