mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 20:59:31 -05:00
guix: ant-build-system: Put dummy project-name into default build.xml.
Without this, ant reported error messages like Target "tests" does not exist in the project "null". Simple using the jar-name is a good compromise. * guix/build/ant-build-system.scm (default-build.xml): Add attribute to sxml expression.
This commit is contained in:
parent
a331623931
commit
cbad3570db
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@ (define* (default-build.xml jar-name prefix #:optional
|
|||
(call-with-output-file "build.xml"
|
||||
(lambda (port)
|
||||
(sxml->xml
|
||||
`(project (@ (basedir "."))
|
||||
`(project (@ (basedir ".")
|
||||
(name ,jar-name))
|
||||
(property (@ (name "classes.dir")
|
||||
(value "${basedir}/build/classes")))
|
||||
(property (@ (name "manifest.dir")
|
||||
|
|
Loading…
Reference in a new issue