Date: Fri, 7 Sep 2001 15:26:05 +0100 From: Tom Hukins <tom@FreeBSD.org> To: doc@freebsd.org Subject: Web site not linking to porters-handbook Message-ID: <20010907152605.A43978@eborcom.com>
next in thread | raw e-mail | index | archive | help
--oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I've just tried building the Web site from source, and noticed that whilst symbolic links are created for handbook/ and FAQ/, they aren't for porters-handbook which is linked to from <http://www.FreeBSD.org/ports/index.html>. The attached patch fixes this. I'll apply it soon unless anyone knows a good reason not to. Tom --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="www.patch" --- en/Makefile.was Fri Sep 7 15:18:59 2001 +++ en/Makefile Fri Sep 7 15:19:59 2001 @@ -65,7 +65,7 @@ WEB_LANG?= ja es ru zh de -COOKIE= FAQ handbook +COOKIE= FAQ handbook porters-handbook # Non-English @@ -84,12 +84,14 @@ xsltproc -nonet -o index.html index.xsl news/news.xml -tidy -i -m -f /dev/null index.html -# Handle the FAQ/ and handbook/ directories specially. +# Handle the FAQ/ handbook/ and porters-handbook/ directories specially. FAQ: ln -fs ${.CURDIR}/../../doc/en_US.ISO8859-1/books/faq FAQ handbook: ln -fs ${.CURDIR}/../../doc/en_US.ISO8859-1/books/handbook handbook +porters-handbook: + ln -fs ${.CURDIR}/../../doc/en_US.ISO8859-1/books/porters-handbook porters-handbook afterinstall: (cd ${DOCINSTALLDIR} && ln -fs doc/en_US.ISO8859-1/books/faq ${DOCINSTALLDIR}/FAQ) --oyUTqETQ0mS9luUI-- 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?20010907152605.A43978>