From owner-freebsd-doc Fri Sep 7 7:27:34 2001 Delivered-To: freebsd-doc@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 8919D37B401 for ; Fri, 7 Sep 2001 07:27:29 -0700 (PDT) Received: from eborcom.com ([62.253.91.195]) by mta03-svc.ntlworld.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20010907142724.JWQN23687.mta03-svc.ntlworld.com@eborcom.com> for ; Fri, 7 Sep 2001 15:27:24 +0100 Received: (qmail 44301 invoked by uid 1001); 7 Sep 2001 14:26:05 -0000 Date: Fri, 7 Sep 2001 15:26:05 +0100 From: Tom Hukins To: doc@freebsd.org Subject: Web site not linking to porters-handbook Message-ID: <20010907152605.A43978@eborcom.com> Mail-Followup-To: Tom Hukins , doc@freebsd.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="oyUTqETQ0mS9luUI" 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 --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 . 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