Return-Path: Delivered-To: apmail-ant-user-archive@www.apache.org Received: (qmail 14004 invoked from network); 18 May 2006 10:00:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 May 2006 10:00:46 -0000 Received: (qmail 22570 invoked by uid 500); 18 May 2006 10:00:40 -0000 Delivered-To: apmail-ant-user-archive@ant.apache.org Received: (qmail 22447 invoked by uid 500); 18 May 2006 10:00:40 -0000 Mailing-List: contact user-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Users List" Reply-To: "Ant Users List" Delivered-To: mailing list user@ant.apache.org Received: (qmail 22436 invoked by uid 99); 18 May 2006 10:00:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2006 03:00:39 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [192.6.10.2] (HELO colossus.hpl.hp.com) (192.6.10.2) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2006 03:00:38 -0700 Received: from localhost (localhost.localdomain [127.0.0.1]) by colossus.hpl.hp.com (Postfix) with ESMTP id 2DEE36BA10 for ; Thu, 18 May 2006 11:00:16 +0100 (BST) Received: from colossus.hpl.hp.com ([127.0.0.1]) by localhost (colossus.hpl.hp.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 12995-03 for ; Thu, 18 May 2006 11:00:15 +0100 (BST) Received: from kropotkin.hpl.hp.com (kropotkin.hpl.hp.com [16.25.191.14]) by colossus.hpl.hp.com (Postfix) with ESMTP id CEF2E6B9E9 for ; Thu, 18 May 2006 11:00:14 +0100 (BST) Received: from localhost (localhost [127.0.0.1]) by kropotkin.hpl.hp.com (Postfix) with ESMTP id 571CD7965 for ; Thu, 18 May 2006 11:00:14 +0100 (BST) Received: from kropotkin.hpl.hp.com ([127.0.0.1]) by localhost (kropotki [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 21524-01 for ; Thu, 18 May 2006 11:00:09 +0100 (BST) Received: from timmay.hpl.hp.com (timmay.hpl.hp.com [16.25.171.20]) by kropotkin.hpl.hp.com (Postfix) with ESMTP id 81499784E for ; Thu, 18 May 2006 11:00:09 +0100 (BST) Received: from [16.25.171.182] (chamonix.hpl.hp.com [16.25.171.182]) by timmay.hpl.hp.com (8.13.2/8.13.2) with ESMTP id k4IA03Gr010511 for ; Thu, 18 May 2006 11:00:04 +0100 (BST) Message-ID: <446C45A3.3030800@apache.org> Date: Thu, 18 May 2006 11:00:03 +0100 From: Steve Loughran User-Agent: Thunderbird 1.5.0.2 (X11/20060420) MIME-Version: 1.0 To: Ant Users List Subject: Re: Checking out to the same directory References: <0BC4BDA530FB44419B8F47C0D31042AD01B0E689@dawg.fmgtech.com> In-Reply-To: <0BC4BDA530FB44419B8F47C0D31042AD01B0E689@dawg.fmgtech.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-HPLB-IMAP-MailScanner-Information: Please contact the Helpdesk for more information X-HPLB-IMAP-MailScanner: Found to be clean X-HPLB-IMAP-MailScanner-SpamCheck: not spam, SpamAssassin (score=0, required 5) X-Virus-Scanned: amavisd-new at kropotkin.hpl.hp.com X-Virus-Scanned: amavisd-new at hplb.hpl.hp.com X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Venkat Kotu wrote: > Hi, > > > > I have a need to checkout files from 3 different modules to the same > destination directory. Uh oh. I have used -d option to specify the destination > directory. My ant file is as below: > > > > > > > > > > > > > > > > > > > > > > > > > > > > I was expecting this to work. The mod1.file1 is checked out. While > trying to check out the mod2.differentFile I get the following output on > the console:: > > > > [cvs] cvs checkout: existing repository repositoryName.mod1.file1 does > not match with mod2.differentFile > > [cvs] cvs checkout: ignoring module mod2.differentFile > > > > As a result the file from the second module is not checked out. > > > > I tried with a generic target defined in a different file and calling it > with the destdir and module as parameters to the antcall task. Outcome > is the same as above. > > > > What I am doing wrong? > This is not ant complaining, this is CVS complaining. Dont do this, CVS doesnt like it. It retains all those CVS/ directories to cache state, and if you try checking out another repository in the same place it is bound to get into a mess. Check them out into different places then copy stuff into a target directory. --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For additional commands, e-mail: user-help@ant.apache.org