From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17343 invoked by alias); 11 Jul 2002 13:53:26 -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 17336 invoked from network); 11 Jul 2002 13:53:25 -0000 Received: from unknown (HELO potter.sfbay.redhat.com) (205.180.83.107) by sources.redhat.com with SMTP; 11 Jul 2002 13:53:25 -0000 Received: from kickstart1.oracle.redhat.com (vpn3-1.sfbay.redhat.com [172.16.25.1]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id g6BDsBQ27230; Thu, 11 Jul 2002 06:54:11 -0700 Subject: Re: gnu.readline compile problem From: Anthony Green To: "T.J. Mather" Cc: "H. Kemal "=?ISO-8859-1?Q?G=FCrsoy?= , rhug-rhats@sources.redhat.com In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 11 Jul 2002 06:53:00 -0000 Message-Id: <1026395599.1956.2.camel@dhcppc2> Mime-Version: 1.0 X-SW-Source: 2002-07/txt/msg00003.txt.bz2 On Wed, 2002-07-10 at 17:16, T.J. Mather wrote: > I ran into the same problem and was able to fix it by appending ":." to > the classpath in Makefile.am. I think it actually needs a bigger change. I botched this when gcjh was changed to require --classpath. This also updates Makefile.in. Thanks, AG 2002-07-11 Anthony Green * Makefile.am: Fix gcjh invocation. * Makefile.in: Rebuilt. Index: Makefile.am =================================================================== RCS file: /cvs/rhug/rhug/gnu.readline/Makefile.am,v retrieving revision 1.9 diff -c -r1.9 Makefile.am *** Makefile.am 9 Jul 2002 03:10:54 -0000 1.9 --- Makefile.am 11 Jul 2002 13:47:44 -0000 *************** *** 107,113 **** # There's probably a cleaner generic way to handle this situation org_gnu_readline_Readline.h: $(lib_org_gnu_readline_la_DEPENDENCIES) ! $(GCJH) --classpath=upstream/src:. -jni `echo $(lib_org_gnu_readline_la_DEPENDENCIES) | sed 's/\.class//g'` -o $@ ./upstream/src/native/org_gnu_readline_Readline.c: org_gnu_readline_Readline.h # Building the tests --- 107,113 ---- # There's probably a cleaner generic way to handle this situation org_gnu_readline_Readline.h: $(lib_org_gnu_readline_la_DEPENDENCIES) ! $(GCJH) --classpath=upstream/src:. -jni `echo $(lib_org_gnu_readline_la_DEPENDENCIES) | sed 's/upstream\/src//g' | sed 's/\.class//g'` -o $@ ./upstream/src/native/org_gnu_readline_Readline.c: org_gnu_readline_Readline.h # Building the tests