ensure "colors" is installed before "draw"

svn: r3633
This commit is contained in:
Matthew Flatt 2006-07-06 20:02:20 +00:00
parent e7a03a3018
commit 154329bf0e

View File

@ -1,11 +1,13 @@
(module installer mzscheme (module installer mzscheme
(require (lib "compile.ss" "profj")) (require (lib "compile.ss" "profj")
(prefix colors: (lib "installer.ss" "htdch" "colors")))
(provide installer) (provide installer)
(define (mprintf . a) (define (mprintf . a)
(fprintf a (current-error-port))) (fprintf a (current-error-port)))
(define (installer plthome) (define (installer plthome)
(colors:installer plthome)
(let ((draw-path (build-path (collection-path "htdch" "draw")))) (let ((draw-path (build-path (collection-path "htdch" "draw"))))
(let ((javac (let ((javac
(lambda (file) (lambda (file)