Date: Thu, 21 Jun 2001 14:36:48 +0200 From: Neil Blakey-Milner <nbm@mithrandr.moria.org> To: Christian Weisgerber <naddy@mips.inka.de> Cc: gnats-admin@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/28306: docbook.css and OBJDIR Message-ID: <20010621143648.A88495@mithrandr.moria.org> In-Reply-To: <20010621133329.A23858@kemoauc.mips.inka.de>; from naddy@mips.inka.de on Thu, Jun 21, 2001 at 01:33:29PM %2B0200 References: <200106210041.f5L0fva98891@kemoauc.mips.inka.de> <200106210120.f5L1K2597051@freefall.freebsd.org> <20010621133329.A23858@kemoauc.mips.inka.de>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu 2001-06-21 (13:33), Christian Weisgerber wrote: > > >Category: docs > > >Responsible: freebsd-doc > > >Synopsis: docbook.css and OBJDIR > > >Arrival-Date: Wed Jun 20 18:20:02 PDT 2001 > > Oops, it also fails to install the books. Here's an updated patch: > > --- doc.docbook.mk.orig Thu Jun 21 02:26:41 2001 > +++ doc.docbook.mk Thu Jun 21 03:08:16 2001 > @@ -417,7 +417,7 @@ > install-${_cf}: index.html > @[ -d ${DESTDIR} ] || mkdir -p ${DESTDIR} > ${INSTALL_DOCS} `xargs < HTML.manifest` ${DESTDIR} > - ${INSTALL_DOCS} docbook.css ${DESTDIR} > + ${INSTALL_DOCS} ${.CURDIR}/docbook.css ${DESTDIR} > @if [ -f ln*.html ]; then \ > ${INSTALL_DOCS} ln*.html ${DESTDIR}; \ > fi > @@ -448,7 +448,7 @@ > install-${_cf}: ${DOC}.${_cf} > @[ -d ${DESTDIR} ] || mkdir -p ${DESTDIR} > ${INSTALL_DOCS} ${.ALLSRC} ${DESTDIR} > - ${INSTALL_DOCS} docbook.css ${DESTDIR} > + ${INSTALL_DOCS} ${.CURDIR}/docbook.css ${DESTDIR} > .for _curimage in ${IMAGES_LIB} > @[ -d ${DESTDIR}/${LOCAL_IMAGES_LIB_DIR}/${_curimage:H} ] || mkdir -p ${DESTDIR}/${LOCAL_IMAGES_LIB_DIR}/${_curimage:H} > ${INSTALL_DOCS} ${LOCAL_IMAGES_LIB_DIR}/${_curimage} ${DESTDIR}/${LOCAL_IMAGES_LIB_DIR}/${_curimage:H} > @@ -528,4 +528,4 @@ > .endfor > > docbook.css: > - cp ${CSS_SHEET} ${.CURDIR}/docbook.css > + cp ${CSS_SHEET} ${.CURDIR}/docbook.css Can't do this last bit (.CURDIR considered read-only). Rather always copy docbook.css to .OBJDIR. Neil (dashing to a meeting) -- Neil Blakey-Milner nbm@mithrandr.moria.org 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?20010621143648.A88495>