fix installation path of "Racket Documentation"
Put it in the user-specific directory when its package is installed in a user scope.
This commit is contained in:
parent
30af4dfb33
commit
2f464916a9
|
@ -27,11 +27,9 @@
|
||||||
(for ([variant (remove* '(script-3m script-cgc) (variants))])
|
(for ([variant (remove* '(script-3m script-cgc) (variants))])
|
||||||
(parameterize ([current-launcher-variant variant])
|
(parameterize ([current-launcher-variant variant])
|
||||||
(mk-launcher '("-l-" "help/help")
|
(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")]
|
`([exe-name . ,(if mr? "Racket Documentation" "plt-help")]
|
||||||
[relative? . #t]
|
[relative? . ,(not user?)]
|
||||||
[framework-root . #f]
|
|
||||||
[dll-dir . #f]
|
|
||||||
[install-mode . ,(if user? 'user 'main)]
|
[install-mode . ,(if user? 'user 'main)]
|
||||||
[start-menu? . #t]
|
[start-menu? . #t]
|
||||||
,@extras))))))
|
,@extras))))))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user