gnu: java-hamcrest-library: Fix race condition.
* gnu/packages/java.scm (java-hamcrest-library)[arguments]: Fix build.xml in the same way it is fixed in java-hamcrest-all to prevent a race condition.
This commit is contained in:
parent
b998b19e51
commit
7bbe61f8ff
1 changed files with 7 additions and 0 deletions
|
@ -3796,6 +3796,13 @@ (define-public java-hamcrest-library
|
|||
((#:build-target _) "library")
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(add-after 'unpack 'patch-classpath-for-integration
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "build.xml"
|
||||
(("build/hamcrest-core-\\$\\{version\\}\\.jar")
|
||||
(car (find-files (assoc-ref inputs "java-hamcrest-core")
|
||||
"jar$"))))
|
||||
#t))
|
||||
(replace 'create-pom
|
||||
(lambda _
|
||||
(substitute* "pom/hamcrest-library.pom"
|
||||
|
|
Loading…
Reference in a new issue