From owner-freebsd-ports Fri Feb 9 9:17:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BD3B37B6BC for ; Fri, 9 Feb 2001 08:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19Ge1S77958; Fri, 9 Feb 2001 08:40:01 -0800 (PST) (envelope-from gnats) Received: from mlss15.cl.msu.edu (mlss15.cl.msu.edu [35.9.4.115]) by hub.freebsd.org (Postfix) with ESMTP id ECE8937B84D for ; Fri, 9 Feb 2001 07:54:46 -0800 (PST) Received: (from buchanon@localhost) by mlss15.cl.msu.edu (8.11.2/8.11.1) id f19FskC25719; Fri, 9 Feb 2001 10:54:46 -0500 (EST) (envelope-from buchanon) Message-Id: <200102091554.f19FskC25719@mlss15.cl.msu.edu> Date: Fri, 9 Feb 2001 10:54:46 -0500 (EST) From: Mike Buchanon Reply-To: buchanon@mlss15.cl.msu.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24969: x3270 port won't finish install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24969 >Category: ports >Synopsis: x3270 port won't finish install >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 09 08:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mike Buchanon >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: freebsd 4-2 running X 4.0.2 >Description: make install on x3270 port fails to complete with an error 1. this seems to be caused by the fact that BINDIR=/usr/X11R6/bin and MKFONTDIR=$(BINDIR)/mkfontdir. That's ok, but, in the install part of the make file it calls $(BINDIR)/$(MKFONTDIR) this has the result of trying to run: /usr/X11R6/bin//usr/X11R6/bin/mkfontdir This obviously causes and error. >How-To-Repeat: make install on x3270 port >Fix: *** Makefile.org Fri Feb 9 10:49:50 2001 --- Makefile Fri Feb 9 10:49:55 2001 *************** *** 1121,1127 **** install:: $(DESTDIR)$(FONTINSTDIR)/fonts.dir $(DESTDIR)$(FONTINSTDIR)/fonts.dir:: -chmod u+w $(DESTDIR)$(FONTINSTDIR) $(DESTDIR)$(FONTINSTDIR)/fonts.dir ! $(BINDIR)/$(MKFONTDIR) $(DESTDIR)$(FONTINSTDIR) chmod u=rwx,go=rx $(DESTDIR)$(FONTINSTDIR) chmod a=r $(DESTDIR)$(FONTINSTDIR)/fonts.dir --- 1121,1127 ---- install:: $(DESTDIR)$(FONTINSTDIR)/fonts.dir $(DESTDIR)$(FONTINSTDIR)/fonts.dir:: -chmod u+w $(DESTDIR)$(FONTINSTDIR) $(DESTDIR)$(FONTINSTDIR)/fonts.dir ! $(MKFONTDIR) $(DESTDIR)$(FONTINSTDIR) chmod u=rwx,go=rx $(DESTDIR)$(FONTINSTDIR) chmod a=r $(DESTDIR)$(FONTINSTDIR)/fonts.dir >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message