From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 25 19:50:16 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 003DF37B401 for ; Fri, 25 Jul 2003 19:50:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 108C143F85 for ; Fri, 25 Jul 2003 19:50:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6Q2oEUp051819 for ; Fri, 25 Jul 2003 19:50:14 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6Q2oEr0051818; Fri, 25 Jul 2003 19:50:14 -0700 (PDT) Resent-Date: Fri, 25 Jul 2003 19:50:14 -0700 (PDT) Resent-Message-Id: <200307260250.h6Q2oEr0051818@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, dgw@liwest.at Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D981A37B401 for ; Fri, 25 Jul 2003 19:47:21 -0700 (PDT) Received: from CM58-27.liwest.at (cm58-27.liwest.at [212.33.58.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20FA143F3F for ; Fri, 25 Jul 2003 19:47:21 -0700 (PDT) (envelope-from root@CM58-27.liwest.at) Received: by CM58-27.liwest.at (Postfix, from userid 2500) id E19F454D9; Thu, 17 Jul 2003 22:06:35 +0000 (GMT) Message-Id: <20030717220635.E19F454D9@CM58-27.liwest.at> Date: Thu, 17 Jul 2003 22:06:35 +0000 (GMT) From: dgw@liwest.at To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: dgw@liwest.at Subject: ports/54876: [PATCH] lang/guile: Bug in a Makefile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: dgw@liwest.at List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Jul 2003 02:50:16 -0000 >Number: 54876 >Category: ports >Synopsis: [PATCH] lang/guile: Bug in a Makefile >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jul 25 19:50:14 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Daniela >Release: FreeBSD 4.8-STABLE i386 >Organization: >Environment: System: FreeBSD 4.8-STABLE i386 >Description: /usr/ports/lang/guile/work/guile-1.6.4/libguile/Makefile contains a bunch of bugs. (I hope the patch is clean, I'm not so experienced.) >How-To-Repeat: cd /usr/ports/lang/guile && make install >Fix: Apply this patch to /usr/ports/lang/guile/work/guile-1.6.4/libguile/Makefile: --- Makefile.old Wed Jul 16 09:09:27 2003 +++ Makefile Wed Jul 16 09:21:31 2003 @@ -303,7 +303,8 @@ SUFFIXES = .x .doc preinstguile = $(top_builddir_absolute)/pre-inst-guile -preinstguiletool = GUILE="$(preinstguile)" $(top_srcdir)/scripts +GUILE="$(preinstguile)" -s $(top_srcdir)/scripts +preinstguiletool = $(GUILE) # if we're dependent on GNU make we can just enable this all the time. @@ -1050,10 +1051,10 @@ load.x: libpath.h guile.texi: $(alldotdocfiles) guile$(EXEEXT) - $(dotdoc2texi) --manual > $@ || { rm $@; false; } + $(dotdoc2texi) --manual > $@ || ( rm $@; false; ) guile-procedures.texi: $(alldotdocfiles) guile - $(dotdoc2texi) > $@ || { rm $@; false; } + $(dotdoc2texi) > $@ || ( rm $@; false; ) guile-procedures.txt: guile-procedures.texi rm -f $@ >Release-Note: >Audit-Trail: >Unformatted: