gnu: icu4j: Fix build.

* gnu/packages/icu4c.scm (icu4j)[arguments]: Use gexp for 'make-flags'.
This commit is contained in:
Guillaume Le Vaillant 2021-09-18 12:17:01 +02:00
parent 68557cd2f3
commit 048934c3b6
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -8,6 +8,7 @@
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -29,6 +30,7 @@ (define-module (gnu packages icu4c)
#:use-module (gnu packages java)
#:use-module (gnu packages perl)
#:use-module (gnu packages python)
#:use-module (guix gexp)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix utils)
@ -164,18 +166,19 @@ (define-public java-icu4j
(build-system ant-build-system)
(arguments
`(#:make-flags
(list (string-append "-Djunit.core.jar="
(car (find-files
(assoc-ref %build-inputs "java-junit")
".*.jar$")))
(string-append "-Djunit.junitparams.jar="
(car (find-files
(assoc-ref %build-inputs "java-junitparams")
".*.jar$")))
(string-append "-Djunit.hamcrest.jar="
(car (find-files
(assoc-ref %build-inputs "java-hamcrest-core")
".*.jar$"))))
,#~(list
(string-append "-Djunit.core.jar="
(car (find-files
#$(this-package-native-input "java-junit")
".*.jar$")))
(string-append "-Djunit.junitparams.jar="
(car (find-files
#$(this-package-native-input "java-junitparams")
".*.jar$")))
(string-append "-Djunit.hamcrest.jar="
(car (find-files
#$(this-package-native-input "java-hamcrest-core")
".*.jar$"))))
#:phases
(modify-phases %standard-phases
(add-before 'configure 'chdir