From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:32905) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlffj-0005cT-T4 for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlffh-00061i-ST for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58171) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hlffg-00060m-AE for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hlffg-0006yj-58 for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:04 -0400 Subject: [bug#36605] [PATCH 2/3] guix: ant-build-system: add empty `tests` target to default build.xml. Resent-Message-ID: From: Hartmut Goebel Date: Thu, 11 Jul 2019 22:26:20 +0200 Message-Id: <20190711202644.32014-12-h.goebel@crazy-compilers.com> In-Reply-To: <20190711202644.32014-1-h.goebel@crazy-compilers.com> References: <58494E16.9010909@crazy-compilers.com> <20190711202644.32014-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36605@debbugs.gnu.org This avoids the need to set #:tests? #f whenever using #:jar-name (and thus using the default build.xml). * guix/build/ant-build-system.scm (default-build.xml): Add attribute to sxml expression. --- guix/build/ant-build-system.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/guix/build/ant-build-system.scm b/guix/build/ant-build-system.scm index fe7bae5..2cc6bb9 100644 --- a/guix/build/ant-build-system.scm +++ b/guix/build/ant-build-system.scm @@ -70,6 +70,7 @@ (arg (@ (line ,(string-append "-cf ${jar.dir}/" jar-name " -C ${classes.dir} .")))))) + (target (@ (name "tests"))) (target (@ (name "install")) (copy (@ (todir "${dist.dir}")) (fileset (@ (dir "${jar.dir}")) -- 2.7.4