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 31974 invoked from network); 8 Aug 2000 13:05:07 -0000 Received: from public.ndh.net (HELO public.ndh.com) (195.94.90.21) by locus.apache.org with SMTP; 8 Aug 2000 13:05:07 -0000 Received: from sbodewig.bost.de ([195.227.98.11]) by public.ndh.com (8.9.3/8.8.0) with ESMTP id PAA00076 for ; Tue, 8 Aug 2000 15:05:05 +0200 (MET DST) Received: (from bodewig@localhost) by sbodewig.bost.de (8.9.3/8.9.3) id PAA01126; Tue, 8 Aug 2000 15:05:05 +0200 X-Authentication-Warning: sbodewig.bost.de: bodewig set sender to bodewig@bost.de using -f To: ant-user@jakarta.apache.org Subject: Re: Setting build.compiler in .ant.properties ? References: <71D456DBB922D111B79C00A024B95F6324B3DC@tmpc06.medien.tecmath.de> From: Stefan Bodewig Date: 08 Aug 2000 15:05:05 +0200 In-Reply-To: "Markus Kohler"'s message of "Tue, 8 Aug 2000 14:51:45 +0200" Message-ID: Lines: 12 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Capitol Reef) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N Hi Markus, looks like something sets your build.compiler property before .ant.properties is loaded (Ant's own buildfile did so back in 1.1, now the construct that loads .ant.properties has moved up in the buildfile). Either shuffle your constructs or invoke Ant with ant -Dbuild.compiler=jikes. To make this change permanent, set the environment variable ANT_OPTS to -Dbuild.compiler=jikes. Stefan