manually forcing installer order due to the error reported by Eli

svn: r8870
This commit is contained in:
Kathy Gray 2008-03-04 14:51:18 +00:00
parent de80a22496
commit 2978ec4520
6 changed files with 22 additions and 7 deletions

View File

@ -1,5 +1,4 @@
#lang setup/infotab
(define assume-virtual-sources #t)
(define install-collection "installer.ss")
;; (define pre-install-collection "pre-installer.ss")
#;(define install-collection "installer.ss")

View File

@ -1,5 +1,4 @@
#lang setup/infotab
(define assume-virtual-sources #t)
(define install-collection "installer.ss")
;; (define pre-install-collection "pre-installer.ss")
#;(define install-collection "installer.ss")

View File

@ -1,5 +1,4 @@
#lang setup/infotab
(define assume-virtual-sources #t)
(define install-collection "installer.ss")
;; (define pre-install-collection "pre-installer.ss")
#;(define install-collection "installer.ss")

View File

@ -1,4 +1,4 @@
#lang setup/infotab
(define assume-virtual-sources #t)
(define install-collection "installer.ss")
#;(define install-collection "installer.ss")

View File

@ -3,3 +3,4 @@
(define name "Java Teachpacks")
(define compile-omit-paths '("Examples"))
(define install-collection "installer.scm")

View File

@ -0,0 +1,17 @@
(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)
(define (installer plthome)
(geo:installer plthome)
(color:installer plthome)
(draw:installer plthome)
(idraw:installer plthome)
(graph:installer plthome))
)