diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-03-26 08:00:17 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-03-26 08:05:24 +0200 |
commit | 51602aac8e9449e39441693553f7afb87094ee14 (patch) | |
tree | 112bd6efcefe240c5c70c13527f39ed78b8f3018 | |
parent | 40e3a197f9ef316ceda709d27070104760ad8656 (diff) | |
download | patches-51602aac8e9449e39441693553f7afb87094ee14.tar patches-51602aac8e9449e39441693553f7afb87094ee14.tar.gz |
gnu: ecj-javac-wrapper: Fix reference to glibj and tools.zip.
* gnu/packages/java.scm (ecj-javac-wrapper)[arguments]: Fix references to
glibj and tools.zip.
-rw-r--r-- | gnu/packages/java.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 170be77949..3248bebfc0 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -357,8 +357,8 @@ requirement for all GNU Classpath releases after version 0.93.") "/bin/jamvm")) (bootcp (let ((jvmlib (string-append (assoc-ref %build-inputs "classpath") "/share/classpath"))) - (string-append jvmlib "/lib/glibj.zip:" - jvmlib "/lib/tools.zip")))) + (string-append jvmlib "/glibj.zip:" + jvmlib "/tools.zip")))) (mkdir-p bin) (with-output-to-file target (lambda _ |