We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RACKET=...
1 parent c48608d commit c6ee64dCopy full SHA for c6ee64d
main.zuo
@@ -77,6 +77,12 @@
77
(hash 'jobs n-jobs)
78
(hash)))
79
80
+ (define (derived-options)
81
+ (define r (get-provided-racket))
82
+ (if (equal? r "")
83
+ (hash)
84
+ (hash 'racket (or (find-executable-path r) r))))
85
+
86
(define (get-job-options)
87
(define jobs (get-jobs))
88
(if jobs
@@ -797,7 +803,8 @@
797
803
(let ([src (at-source src)])
798
804
(build (find-target target-name
799
805
((dynamic-require src 'targets-at)
800
- (make-at-dir (path-only src))))
806
+ (make-at-dir (path-only src))
807
+ (derived-options)))
801
808
token)))
802
809
(build-one "racket/src/rktio/build.zuo" "rktio-rktl")
810
(build-one "racket/src/expander/main.zuo" "expander")
0 commit comments