From 154329bf0e584eb5445c8056b9945a801eb30e66 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 6 Jul 2006 20:02:20 +0000 Subject: [PATCH] ensure "colors" is installed before "draw" svn: r3633 --- collects/htdch/draw/installer.ss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/collects/htdch/draw/installer.ss b/collects/htdch/draw/installer.ss index c61f192dac..c881daa553 100644 --- a/collects/htdch/draw/installer.ss +++ b/collects/htdch/draw/installer.ss @@ -1,11 +1,13 @@ (module installer mzscheme - (require (lib "compile.ss" "profj")) + (require (lib "compile.ss" "profj") + (prefix colors: (lib "installer.ss" "htdch" "colors"))) (provide installer) (define (mprintf . a) (fprintf a (current-error-port))) (define (installer plthome) + (colors:installer plthome) (let ((draw-path (build-path (collection-path "htdch" "draw")))) (let ((javac (lambda (file)