From 2f464916a9c422fe7cef173c3110cbf904484a9c Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Tue, 19 Nov 2013 16:25:50 -0700 Subject: [PATCH] fix installation path of "Racket Documentation" Put it in the user-specific directory when its package is installed in a user scope. --- pkgs/racket-pkgs/racket-doc/help/installer.rkt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/racket-pkgs/racket-doc/help/installer.rkt b/pkgs/racket-pkgs/racket-doc/help/installer.rkt index 7e036214e7..ef31128e9d 100644 --- a/pkgs/racket-pkgs/racket-doc/help/installer.rkt +++ b/pkgs/racket-pkgs/racket-doc/help/installer.rkt @@ -27,11 +27,9 @@ (for ([variant (remove* '(script-3m script-cgc) (variants))]) (parameterize ([current-launcher-variant variant]) (mk-launcher '("-l-" "help/help") - (mk-path (if mr? "Racket Documentation" "plt-help")) + (mk-path (if mr? "Racket Documentation" "plt-help") #:user? user?) `([exe-name . ,(if mr? "Racket Documentation" "plt-help")] - [relative? . #t] - [framework-root . #f] - [dll-dir . #f] + [relative? . ,(not user?)] [install-mode . ,(if user? 'user 'main)] [start-menu? . #t] ,@extras))))))