guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] guix: ant-build-system: Fix pattern for collecting jar-files.


From: Hartmut Goebel
Subject: [PATCH] guix: ant-build-system: Fix pattern for collecting jar-files.
Date: Sat, 3 Sep 2016 09:04:52 +0200

The former pattern did include 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)
-- 
2.7.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]