Date: Sat, 2 Feb 2002 18:03:27 +0200 From: Peter Pentchev <roam@ringlet.net> To: Murray Stokely <murray@FreeBSD.org> Cc: doc@FreeBSD.org Subject: articles/releng/Makefile not OBJDIR-clean Message-ID: <20020202180327.D626@straylight.oblivion.bg>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020202180327.D626>