From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22700 invoked by alias); 2 Apr 2009 22:02:53 -0000 Received: (qmail 19577 invoked by uid 22791); 2 Apr 2009 22:02:46 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=BAYES_00,SARE_MSGID_LONG40,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mail-ew0-f162.google.com (HELO mail-ew0-f162.google.com) (209.85.219.162) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 02 Apr 2009 22:02:41 +0000 Received: by ewy6 with SMTP id 6so725344ewy.24 for ; Thu, 02 Apr 2009 15:02:38 -0700 (PDT) MIME-Version: 1.0 Received: by 10.210.69.6 with SMTP id r6mr5717893eba.82.1238709758534; Thu, 02 Apr 2009 15:02:38 -0700 (PDT) Date: Thu, 02 Apr 2009 22:02:00 -0000 Message-ID: Subject: Re: make: ERROR: Unable to find file "./../cgen/cgen-opc.scm" in load path From: Martin Walter To: cgen@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Mailing-List: contact cgen-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cgen-owner@sourceware.org X-SW-Source: 2009-q2/txt/msg00001.txt.bz2 > ... > ERROR: In procedure primitive-load-path: > ERROR: Unable to find file "./../cgen/cgen-opc.scm" in load path > ... This patch to opcodes/configure.in should help: # --- configure.in 2009-04-01 23:46:30.000000000 +0200 +++ configure.in 2009-04-01 23:47:11.000000000 +0200 @@ -76,7 +76,7 @@ AC_CHECK_DECLS(basename) cgen_maint=no -cgendir='$(srcdir)/../cgen' +cgendir='$(shell pwd)/../cgen' AC_ARG_ENABLE(cgen-maint, [ --enable-cgen-maint[=dir] build cgen generated files], Martin