mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: hdf-java: Use INVOKE.
* gnu/packages/maths.scm (hdf-java)[arguments]: Unconditionally return #T from build phases.
This commit is contained in:
parent
dfe420ee46
commit
9286c0f7e8
1 changed files with 3 additions and 3 deletions
|
@ -937,7 +937,7 @@ (define-public hdf-java
|
|||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'configure 'chdir-to-source
|
||||
(lambda _ (chdir ,(string-append "hdfjava-" version))))
|
||||
(lambda _ (chdir ,(string-append "hdfjava-" version)) #t))
|
||||
(add-before 'configure 'patch-build
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(substitute* "configure"
|
||||
|
@ -986,8 +986,8 @@ (define-public hdf-java
|
|||
#t))
|
||||
(add-before 'check 'build-examples
|
||||
(lambda _
|
||||
(zero? (apply system* `("javac"
|
||||
,@(find-files "examples" ".*\\.java")))))))
|
||||
(apply invoke `("javac"
|
||||
,@(find-files "examples" ".*\\.java"))))))
|
||||
|
||||
#:parallel-build? #f
|
||||
|
||||
|
|
Loading…
Reference in a new issue