diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-09-03 09:04:52 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-09-03 10:36:20 +0200 |
commit | abc4cb57ca6ae015e916d0218a904b250ec23659 (patch) | |
tree | 056e56e822be08ff83ea91eff898e4e13c356b7b | |
parent | 5741e3e5520998f93b59848b3e58f99c0357e9a5 (diff) | |
download | guix-abc4cb57ca6ae015e916d0218a904b250ec23659.tar guix-abc4cb57ca6ae015e916d0218a904b250ec23659.tar.gz |
guix: ant-build-system: Fix pattern for collecting jar files.
The former pattern included the "jar" binary.
* guix/build/ant-build-system.scm (generate-classpath): Change pattern.
Suggested by: Ricardo Wurmus <rekado@elephly.net>
-rw-r--r-- | guix/build/ant-build-system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/ant-build-system.scm b/guix/build/ant-build-system.scm index 6dc19ff2db..00a4a46d81 100644 --- a/guix/build/ant-build-system.scm +++ b/guix/build/ant-build-system.scm @@ -83,7 +83,7 @@ INPUTS." (string-join (apply append (map (match-lambda ((_ . dir) - (find-files dir "\\.*jar$"))) + (find-files dir "\\.jar$"))) inputs)) ":")) (define* (unpack #:key source #:allow-other-keys) |