From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15316 invoked by alias); 12 Jan 2005 09:18:36 -0000 Mailing-List: contact rhug-rhats-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Post: List-Help: , Sender: rhug-rhats-owner@sources.redhat.com Received: (qmail 15159 invoked from network); 12 Jan 2005 09:18:23 -0000 Received: from unknown (HELO mailout1.informatik.tu-muenchen.de) (131.159.0.18) by sourceware.org with SMTP; 12 Jan 2005 09:18:23 -0000 Message-ID: <41E4EB6F.8080307@in.tum.de> Date: Wed, 12 Jan 2005 09:18:00 -0000 From: Immanuel Scheerer User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040922 MIME-Version: 1.0 To: rhug-rhats@sources.redhat.com Subject: Re: rhug/rhino from 2005-01-11 build failure with jar -c@ References: <20050111201103.GA28892@sauna.l.org> In-Reply-To: <20050111201103.GA28892@sauna.l.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2005-01/txt/msg00003.txt.bz2 Timo Juhani Lindfors wrote: > (cd upstream/toolsrc && \ > (../../listclasses rhino-tools; \ > for i in upstream/toolsrc/org/mozilla/javascript/tools/resources/Messages.properties; do echo $i; done | \ > sed -e 's:^upstream/toolsrc/::') | \ > jar -c@) > rhino-tools-1.5R3.jar > Illegal option: @ > Usage: jar {ctxu}[vfm0Mi] [jar-file] [manifest-file] [-C dir] files ... I think you are using the jar-binary shipped with the SUN SDK. libgcj itself provides a jar binary with following usage: Usage: jar {ctxuV}[vfm0ME@] [jar-file] [manifest-file] [-C dir] files ... The option -@ (read names from stdin) is not provided by the jar-binary from SUN. I suppose the problem can be solved by changing $PATH so that the path with the libgcj-binaries comes before the path with the SUN-binaries. I hope this helps you. Greetings, Immanuel