Return-Path: Mailing-List: contact ant-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-user@jakarta.apache.org Received: (qmail 34315 invoked from network); 12 Oct 2000 15:05:38 -0000 Received: from public.ndh.net (HELO public.ndh.com) (195.94.90.21) by locus.apache.org with SMTP; 12 Oct 2000 15:05:38 -0000 Received: from sbodewig.bost.de ([195.227.98.11]) by public.ndh.com (8.9.3/8.8.0) with ESMTP id RAA00520 for ; Thu, 12 Oct 2000 17:05:32 +0200 (MET DST) Received: (from bodewig@localhost) by sbodewig.bost.de (8.9.3/8.9.3) id RAA09301; Thu, 12 Oct 2000 17:05:31 +0200 X-Authentication-Warning: sbodewig.bost.de: bodewig set sender to bodewig@bost.de using -f To: ant-user@jakarta.apache.org Subject: Re: directory problem with ant References: <018e01c0345a$ad0b8c10$6f01a8c0@ultrastation> From: Stefan Bodewig Date: 12 Oct 2000 17:05:31 +0200 In-Reply-To: "Andreas Schildbach"'s message of "Thu, 12 Oct 2000 16:42:42 +0200" Message-ID: Lines: 25 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N >>>>> "AS" == Andreas Schildbach writes: AS> package test; AS> public class Hello ... AS> AS> MY PROBLEM: AS> ant generates a "test"-subdirectory for the .class-files ==> AS> d:\classes\test\test\Hello.class This is expected behavior, it is not Ant that is creating the subdirectory but javac/jikes. The class resides in the package test, destdir is the root of the hierarchy so the resulting class gets into destdir/test/. AS> I tried to use destdir="d:\classes", but in this case ant decides AS> to _not_ use that "test"-directory ==> d:\classes\Hello.class Well, this is something I've never seen - and I can't reproduce it either (maybe because I don't have a Windows box at hand). Does it work if you use destdir=".."? Stefan