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
|
@ -1862,6 +1862,11 @@ new Date();"))
|
|||
"test-generative-src"
|
||||
"tools-namespace-src"))
|
||||
#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.
|
||||
(add-after 'build 'build-doc
|
||||
(lambda _
|
||||
|
|
Loading…
Reference in New Issue