Date: Tue, 18 Jul 2000 13:58:50 +0100 From: Ben Smithurst <ben@FreeBSD.org> To: Kent Stewart <kstewart@urx.com> Cc: freebsd-doc@freebsd.org Subject: Re: Make install error in fdp-primer Message-ID: <20000718135850.O4668@strontium.scientia.demon.co.uk> In-Reply-To: <3973C061.32A63613@urx.com> References: <3973C061.32A63613@urx.com>
index | next in thread | previous in thread | raw e-mail
[-- Attachment #1 --]
Kent Stewart wrote:
> .ISO_8859-1/books/fdp-primer
> install -C -o root -g wheel -m 444 callouts/1.png
> /usr/share/doc/en_US.ISO_8859
> -1/books/fdp-primer/callouts
> install: callouts/1.png: No such file or directory
> *** Error code 71
>
> I couldn't find where this is occuring but the png's are in
> imagelib/callouts and that isn't were the make file is trying to
> install them from.
Try this patch in /usr/doc/share/mk:
--- doc.docbook.mk~ Tue Jul 18 13:46:11 2000
+++ doc.docbook.mk Tue Jul 18 13:47:25 2000
@@ -328,7 +328,7 @@
(cd ${DESTDIR}; sh ${.OBJDIR}/${DOC}.ln); \
fi
.for _curimage in ${LIB_IMAGES}
- ${INSTALL_DOCS} ${_curimage} ${DESTDIR}/${_curimage:H}
+ ${INSTALL_DOCS} ${LIB_IMAGES_DIR}/${_curimage} ${DESTDIR}/${_curimage:H}
.endfor
.for _compressext in ${KNOWN_COMPRESS}
install-${_cf}.tar.${_compressext}: ${DOC}.${_cf}.tar.${_compressext}
@@ -340,7 +340,7 @@
@[ -d ${DESTDIR} ] || mkdir -p ${DESTDIR}
${INSTALL_DOCS} ${.ALLSRC} ${DESTDIR}
.for _curimage in ${LIB_IMAGES}
- ${INSTALL_DOCS} ${_curimage} ${DESTDIR}/${_curimage:H}
+ ${INSTALL_DOCS} ${LIB_IMAGES_DIR}/${_curimage} ${DESTDIR}/${_curimage:H}
.endfor
.else
install-${_cf}: ${DOC}.${_cf}
That's cut-n-pasted, so spaces may be screwed up. Apply it with 'patch
-l'. Even with that the image links in the FDP primer are broken, but
it installs. I probably shouldn't commit this, since Nik will probably
have a better fix soon.
The images are still broken though. (Show as b0rken images in
Netscape.)
--
Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D
FreeBSD Documentation Project /
[-- Attachment #2 --]
-----BEGIN PGP SIGNATURE-----
Version: PGPfreeware 5.0i for non-commercial use
MessageID: jEKAR3lMEeD3DYAsE8g6U3nzgTG0vULB
iQCVAwUBOXRUiisPVtiZOS99AQGG1QP6AqZn+9CLz++kVmpWQEqwfxu92AUNJtdD
y/ze1nJwUS1mY2kDBzYDY5Qq4mbHw7MfGULhMKZOtbtxfs7LIvGDB/AYhravbND1
uouTQc2XdChvkcIh4CJ1fuEIb6jsbEiHrR/s6E3Pthw3Hzp/SuBpObpOGR1wiE2H
25Xu4CcwVmY=
=79S8
-----END PGP SIGNATURE-----
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000718135850.O4668>
