gnu: clojure: Fix index generation.
* gnu/packages/java.scm (clojure)[arguments]: Add phase 'fix-manifest-classpath to remove offending directory entry making indexing fail.
This commit is contained in:
parent
48d7ac175f
commit
6219685922
1 changed files with 5 additions and 0 deletions
|
@ -1862,6 +1862,11 @@ new Date();"))
|
||||||
"test-generative-src"
|
"test-generative-src"
|
||||||
"tools-namespace-src"))
|
"tools-namespace-src"))
|
||||||
#t))
|
#t))
|
||||||
|
(add-after 'unpack 'fix-manifest-classpath
|
||||||
|
(lambda _
|
||||||
|
(substitute* "build.xml"
|
||||||
|
(("<attribute name=\"Class-Path\" value=\".\"/>") ""))
|
||||||
|
#t))
|
||||||
;; The javadoc target is not built by default.
|
;; The javadoc target is not built by default.
|
||||||
(add-after 'build 'build-doc
|
(add-after 'build 'build-doc
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Reference in a new issue