fix `compile-collection-zos'

This commit is contained in:
Matthew Flatt 2011-08-21 11:43:23 -06:00
parent accb677f0e
commit bdadc453e0
2 changed files with 8 additions and 5 deletions

View File

@ -190,14 +190,12 @@
dir))
(for/fold ([init init]) ([p (directory-list dir)])
(let ([p* (build-path dir p)])
(worker
(if (and (directory-exists? p*) (not (member p omit-paths)))
(if (and (directory-exists? p*) (not (member p omit-paths)))
(compile-directory-visitor p* (c-get-info/full p*) worker
#:verbose verbose?
#:verbose verbose?
#:skip-path skip-path
#:skip-doc-sources? skip-docs?)
null)
init))))
init))))
init))))
(define (compile-directory dir info
#:verbose [verbose? #t]

View File

@ -0,0 +1,5 @@
#lang racket
(require compiler/compiler)
;; minimal sanity check:
(compile-collection-zos "setup")