mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 03:15:09 -05:00
guix: ant-build-system: Use ant-task "jar" instead of executing "jar".
* guix/build/ant-build-system.scm (default-build.xml): Change XML for target "jar" to use ant-task "jar" instead of "exec".
This commit is contained in:
parent
7c0411879b
commit
a331623931
1 changed files with 3 additions and 4 deletions
|
@ -118,10 +118,9 @@ (define* (default-build.xml jar-name prefix #:optional
|
|||
(target (@ (name "jar")
|
||||
(depends "compile, manifest"))
|
||||
(mkdir (@ (dir "${jar.dir}")))
|
||||
(exec (@ (executable "jar"))
|
||||
(arg (@ (line ,(string-append "-cmf ${manifest.file} "
|
||||
"${jar.dir}/" jar-name
|
||||
" -C ${classes.dir} ."))))))
|
||||
(jar (@ (destfile ,(string-append "${jar.dir}/" jar-name))
|
||||
(manifest "${manifest.file}")
|
||||
(basedir "${classes.dir}"))))
|
||||
|
||||
(target (@ (name "install"))
|
||||
(copy (@ (todir "${dist.dir}"))
|
||||
|
|
Loading…
Reference in a new issue