mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
gnu: ecj-javac-wrapper: Remove rt.jar from classpath.
* gnu/packages/java.scm (ecj-javac-wrapper)[arguments]: Do not add jamvm's rt.jar to the classpath.
This commit is contained in:
parent
3287c7c781
commit
abbe291fc2
1 changed files with 1 additions and 4 deletions
|
@ -544,10 +544,7 @@ (define defaults
|
||||||
(define (main args)
|
(define (main args)
|
||||||
(let ((classpath (getenv "CLASSPATH")))
|
(let ((classpath (getenv "CLASSPATH")))
|
||||||
(setenv "CLASSPATH"
|
(setenv "CLASSPATH"
|
||||||
(string-join (list ,ecj
|
(string-join (list ,ecj (or classpath ""))
|
||||||
,(string-append (assoc-ref %build-inputs "jamvm")
|
|
||||||
"/lib/rt.jar")
|
|
||||||
(or classpath ""))
|
|
||||||
":")))
|
":")))
|
||||||
(receive (vm-args other-args)
|
(receive (vm-args other-args)
|
||||||
;; Separate VM arguments from arguments to ECJ.
|
;; Separate VM arguments from arguments to ECJ.
|
||||||
|
|
Loading…
Reference in a new issue