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.master
parent
b998b19e51
commit
7bbe61f8ff
|
@ -3796,6 +3796,13 @@ testing frameworks, mocking libraries and UI validation rules.")
|
||||||
((#:build-target _) "library")
|
((#:build-target _) "library")
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-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
|
(replace 'create-pom
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "pom/hamcrest-library.pom"
|
(substitute* "pom/hamcrest-library.pom"
|
||||||
|
|
Reference in New Issue