Split collection names that come from specified collections on "/"s.
The code in "setup-cmdline.ss" makes sure that they all look like a require specification, which means that they *are* separated by "/"s, and not, for example, "\"s on windows. svn: r15598
This commit is contained in:
parent
2ad22dd716
commit
d1f78ae378
|
@ -379,7 +379,12 @@
|
||||||
(if no-specific-collections?
|
(if no-specific-collections?
|
||||||
all-collections
|
all-collections
|
||||||
(check-again-all
|
(check-again-all
|
||||||
(filter-map (lambda (c) (collection->cc (map string->path c)))
|
(filter-map
|
||||||
|
(lambda (c)
|
||||||
|
(collection->cc (append-map (lambda (s)
|
||||||
|
(map string->path
|
||||||
|
(regexp-split #rx"/" s)))
|
||||||
|
c)))
|
||||||
x-specific-collections))))))
|
x-specific-collections))))))
|
||||||
|
|
||||||
(set! planet-dirs-to-compile
|
(set! planet-dirs-to-compile
|
||||||
|
|
Loading…
Reference in New Issue
Block a user