mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 17:23:38 -05:00
gnu: java-commons-io: Replace %build-inputs with gexp.
* gnu/packages/java.scm (java-commons-io)[arguments]: Do not use %build-inputs; use gexp with this-package-native-inputs instead.
This commit is contained in:
parent
4faca03bed
commit
722c4685f0
1 changed files with 3 additions and 3 deletions
|
@ -6131,9 +6131,9 @@ (define-public java-commons-io
|
|||
(arguments
|
||||
`(#:test-target "test"
|
||||
#:make-flags
|
||||
(list (string-append "-Djunit.jar="
|
||||
(car (find-files (assoc-ref %build-inputs "java-junit")
|
||||
"jar$"))))
|
||||
,#~(list (string-append "-Djunit.jar="
|
||||
(car (find-files #$(this-package-native-input "java-junit")
|
||||
"jar$"))))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'build 'build-javadoc ant-build-javadoc)
|
||||
|
|
Loading…
Reference in a new issue