From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hartmut Goebel Subject: [PATCH] guix: ant-build-system: Fix pattern for collecting jar-files. Date: Sat, 3 Sep 2016 09:04:52 +0200 Message-ID: <1472886292-30886-1-git-send-email-h.goebel@crazy-compilers.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37070) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bg50d-0003SU-HY for guix-devel@gnu.org; Sat, 03 Sep 2016 03:05:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bg50a-0003ta-5D for guix-devel@gnu.org; Sat, 03 Sep 2016 03:04:59 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:44622) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bg50Z-0003tM-VV for guix-devel@gnu.org; Sat, 03 Sep 2016 03:04:56 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3sR6SQ2cyZz3hjYh for ; Sat, 3 Sep 2016 09:04:54 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3sR6SQ23CTzvlfK for ; Sat, 3 Sep 2016 09:04:54 +0200 (CEST) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id 2Akdd3AoLB_5 for ; Sat, 3 Sep 2016 09:04:53 +0200 (CEST) Received: from hermia.goebel-consult.de (ppp-188-174-145-37.dynamic.mnet-online.de [188.174.145.37]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Sat, 3 Sep 2016 09:04:53 +0200 (CEST) Received: from lenashee.goebel-consult.de (lenashee.goebel-consult.de [192.168.110.2]) by hermia.goebel-consult.de (Postfix) with ESMTP id C1324604CE for ; Sat, 3 Sep 2016 09:04:52 +0200 (CEST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org The former pattern did include the "jar" binary. * guix/build/ant-build-system.scm (generate-classpath): Change pattern. Suggested by: Ricardo Wurmus --- 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