diff --git a/collects/help/installer.rkt b/collects/help/installer.rkt index 9507d8646a..d2f92c69a7 100644 --- a/collects/help/installer.rkt +++ b/collects/help/installer.rkt @@ -1,8 +1,9 @@ #lang scheme/base ;; Builds different kinds of executables for different platforms. - -;; proposed changes below -robby. +;; The `plt-help' executable is for backward compatibity. +;; The `Racket Documentation' executable is to help Windows and +;; Mac users who are completely lost and need something to click. (provide post-installer) (require launcher) @@ -23,11 +24,11 @@ make-mzscheme-launcher mzscheme-program-launcher-path '()))) - (for ([variant (variants)]) + (for ([variant (remove* '(script-3m script-cgc) (variants))]) (parameterize ([current-launcher-variant variant]) (mk-launcher '("-l-" "help/help") - (mk-path "plt-help") ;; change to "Racket Docs" - `([exe-name . "plt-help"] ;; get rid of this (in favor of 'raco docs') + (mk-path (if mr? "Racket Documentation" "plt-help")) + `([exe-name . ,(if mr? "Racket Documentation" "plt-help")] [relative? . #t] [framework-root . #f] [dll-dir . #f] diff --git a/collects/scribblings/main/start.scrbl b/collects/scribblings/main/start.scrbl index 474550346f..52c90f9e0e 100644 --- a/collects/scribblings/main/start.scrbl +++ b/collects/scribblings/main/start.scrbl @@ -10,6 +10,7 @@ @margin-note{ @not-on-the-web{ This is an installation-specific listing. Running @exec{raco docs} + (or @exec{Racket Documentation} under Windows or Mac OS X) may open a different page with local and user-specific documentation, including documentation for installed @link["http://planet.plt-scheme.org/"]{@|PLaneT|} packages.}}