[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: guix: ant-build-system: Fix pattern for collecting jar files.
From: |
Ricardo Wurmus |
Subject: |
01/01: guix: ant-build-system: Fix pattern for collecting jar files. |
Date: |
Sat, 3 Sep 2016 08:36:52 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit abc4cb57ca6ae015e916d0218a904b250ec23659
Author: Hartmut Goebel <address@hidden>
Date: Sat Sep 3 09:04:52 2016 +0200
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 <address@hidden>
---
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)