* [PATCH] guix: ant-build-system: Fix pattern for collecting jar-files.
@ 2016-09-03 7:04 Hartmut Goebel
2016-09-03 8:37 ` Ricardo Wurmus
0 siblings, 1 reply; 2+ messages in thread
From: Hartmut Goebel @ 2016-09-03 7:04 UTC (permalink / raw)
To: guix-devel
The former pattern did include the "jar" binary.
* guix/build/ant-build-system.scm (generate-classpath): Change pattern.
Suggested by: Ricardo Wurmus <rekado@elephly.net>
---
guix/build/ant-build-system.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/build/ant-build-system.scm b/guix/build/ant-build-system.scm
index 6dc19ff..00a4a46 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)
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] guix: ant-build-system: Fix pattern for collecting jar-files.
2016-09-03 7:04 [PATCH] guix: ant-build-system: Fix pattern for collecting jar-files Hartmut Goebel
@ 2016-09-03 8:37 ` Ricardo Wurmus
0 siblings, 0 replies; 2+ messages in thread
From: Ricardo Wurmus @ 2016-09-03 8:37 UTC (permalink / raw)
To: Hartmut Goebel; +Cc: guix-devel
Thanks! I pushed this to master as abc4cb57ca6ae015e916d0218a904b250ec23659.
~~ Ricardo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-09-03 8:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-03 7:04 [PATCH] guix: ant-build-system: Fix pattern for collecting jar-files Hartmut Goebel
2016-09-03 8:37 ` Ricardo Wurmus
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.