re comment-out installer line, since the main installer calls all subs now

svn: r8876
This commit is contained in:
Eli Barzilay 2008-03-04 17:33:13 +00:00
parent db62afaadc
commit a48fecced1
2 changed files with 14 additions and 16 deletions

View File

@ -2,5 +2,5 @@
(define name "Imperative Drawing")
(define assume-virtual-sources #t)
(define install-collection "installer.ss")
;; (define install-collection "installer.ss")
;; (define pre-install-collection "pre-installer.ss")

View File

@ -1,17 +1,15 @@
(module installer mzscheme
(require (prefix geo: (lib "installer.ss" "htdch" "geometry"))
(prefix color: (lib "installer.ss" "htdch" "colors"))
(prefix draw: (lib "installer.ss" "htdch" "draw"))
(prefix idraw: (lib "installer.ss" "htdch" "idraw"))
(prefix graph: (lib "installer.ss" "htdch" "graphics"))
)
(provide installer)
#lang mzscheme
(define (installer plthome)
(geo:installer plthome)
(color:installer plthome)
(draw:installer plthome)
(idraw:installer plthome)
(graph:installer plthome))
(require (prefix geo: "geometry/installer.ss")
(prefix color: "colors/installer.ss")
(prefix draw: "draw/installer.ss")
(prefix idraw: "idraw/installer.ss")
(prefix graph: "graphics/installer.ss"))
)
(provide installer)
(define (installer plthome)
(geo:installer plthome)
(color:installer plthome)
(draw:installer plthome)
(idraw:installer plthome)
(graph:installer plthome))