
Adjust installation tools to support cross-installation (i.e., installation for a platform other than the current one) as triggered by "system.rktd" in "lib" having different information than the running Racket executable.
15 lines
287 B
Racket
15 lines
287 B
Racket
#lang scheme/base
|
|
(require scribble/manual)
|
|
|
|
(provide inside-doc
|
|
reference-doc)
|
|
|
|
(define inside-doc
|
|
'(lib "scribblings/inside/inside.scrbl"))
|
|
|
|
(define guide-doc
|
|
'(lib "scribblings/guide/guide.scrbl"))
|
|
|
|
(define reference-doc
|
|
'(lib "scribblings/reference/reference.scrbl"))
|