From owner-freebsd-doc Sat Feb 2 8:14:50 2002 Delivered-To: freebsd-doc@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id BA27E37B416 for ; Sat, 2 Feb 2002 08:14:45 -0800 (PST) Received: (qmail 7653 invoked by uid 1000); 2 Feb 2002 16:03:27 -0000 Date: Sat, 2 Feb 2002 18:03:27 +0200 From: Peter Pentchev To: Murray Stokely Cc: doc@FreeBSD.org Subject: articles/releng/Makefile not OBJDIR-clean Message-ID: <20020202180327.D626@straylight.oblivion.bg> Mail-Followup-To: Murray Stokely , doc@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, The articles/releng build fails when .OBJDIR is different from .CURDIR, i.e. when a build directory is used at all :) Attached is a trivial patch to fix the build. G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org I am jealous of the first word in this sentence. Index: doc/en_US.ISO8859-1/articles/releng/Makefile =================================================================== RCS file: /home/ncvs/doc/en_US.ISO8859-1/articles/releng/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- doc/en_US.ISO8859-1/articles/releng/Makefile 1 Feb 2002 19:17:41 -0000 1.3 +++ doc/en_US.ISO8859-1/articles/releng/Makefile 2 Feb 2002 15:39:07 -0000 @@ -21,7 +21,7 @@ DOC_PREFIX?= ${.CURDIR}/../../.. branches.eps: branches.pic - ${PIC2PS} branches.pic > branches.ps + ${PIC2PS} ${.CURDIR}/branches.pic > branches.ps ${PS2EPS} branches.ps branches.eps .include "${DOC_PREFIX}/share/mk/doc.project.mk" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message