From owner-freebsd-doc Wed Oct 25 4:34:21 2000 Delivered-To: freebsd-doc@freebsd.org Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by hub.freebsd.org (Postfix) with ESMTP id 76C3137B479 for ; Wed, 25 Oct 2000 04:34:17 -0700 (PDT) Received: from waterblue.imgsrc.co.jp (localhost [127.0.0.1]) by waterblue.imgsrc.co.jp (8.11.0/8.11.0) with ESMTP id e9PBYAY14971 for ; Wed, 25 Oct 2000 20:34:10 +0900 (JST) Date: Wed, 25 Oct 2000 20:34:10 +0900 Message-ID: <7m7l6x40jx.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: Doc Team Subject: Around web.mk things User-Agent: Wanderlust/1.1.1 (Purple Rain) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: multipart/mixed; boundary="Multipart_Wed_Oct_25_20:34:10_2000-1" Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --Multipart_Wed_Oct_25_20:34:10_2000-1 Content-Type: text/plain; charset=US-ASCII I checked www build procedure and want to remove symbolic links for web.mk. But I cannot make good solution. So I propose simple way to remove these symbolic links to add web.mk wrappers in each localized directory. Comments? -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project --Multipart_Wed_Oct_25_20:34:10_2000-1 Content-Type: text/plain; type=patch; charset=US-ASCII Content-Disposition: attachment; filename="www.diff" Content-Transfer-Encoding: 7bit Index: Makefile =================================================================== RCS file: /home/ncvs/www/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 2000/09/30 00:21:38 1.14 +++ Makefile 2000/10/25 10:52:22 @@ -1,8 +1,6 @@ # $FreeBSD: www/Makefile,v 1.14 2000/09/30 00:21:38 nbm Exp $ LINKS= en/ja en/es en/ru en/zh -LINKS+= ja/web.mk es/web.mk ru/web.mk -LINKS+= web.mk .if !defined(WEB_ONLY) || empty(WEB_ONLY) LINKS+= ../doc/en_US.ISO_8859-1/web.mk @@ -35,18 +33,6 @@ en/zh: cd en; ln -sf ${.CURDIR}/zh - -ja/web.mk: - cd ja; ln -sf ${.CURDIR}/en/web.mk - -es/web.mk: - cd es; ln -sf ${.CURDIR}/en/web.mk - -ru/web.mk: - cd ru; ln -sf ${.CURDIR}/en/web.mk - -web.mk: - cd .; ln -sf ${.CURDIR}/en/web.mk .if !defined(WEB_ONLY) || empty(WEB_ONLY) ../doc/en_US.ISO_8859-1/web.mk: Index: es/web.mk =================================================================== RCS file: web.mk diff -N web.mk --- /dev/null Wed Oct 25 20:19:13 2000 +++ web.mk Wed Oct 25 19:38:58 2000 @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../en/web.mk" Index: ja/web.mk =================================================================== RCS file: web.mk diff -N web.mk --- /dev/null Wed Oct 25 20:19:13 2000 +++ web.mk Wed Oct 25 19:38:45 2000 @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../en/web.mk" Index: ja/ports/Makefile =================================================================== RCS file: /home/ncvs/www/ja/ports/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- ja/ports/Makefile 2000/10/02 07:54:40 1.19 +++ ja/ports/Makefile 2000/10/25 11:02:17 @@ -68,4 +68,4 @@ (cd ${.CURDIR} && ${MAKE} ${MAKEFLAGS} -f Makefile.inc0 ${.TARGET}) -.include "../../web.mk" +.include "../web.mk" Index: ru/web.mk =================================================================== RCS file: web.mk diff -N web.mk --- /dev/null Wed Oct 25 20:19:13 2000 +++ web.mk Wed Oct 25 19:50:20 2000 @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../en/web.mk" Index: zh/Makefile =================================================================== RCS file: /home/ncvs/www/zh/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- zh/Makefile 2000/02/28 12:51:21 1.4 +++ zh/Makefile 2000/10/25 10:54:52 @@ -10,5 +10,5 @@ WEBBASE= /data/zh -.include "../web.mk" +.include "web.mk" Index: zh/web.mk =================================================================== RCS file: web.mk diff -N web.mk --- /dev/null Wed Oct 25 20:19:13 2000 +++ web.mk Wed Oct 25 19:54:46 2000 @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../en/web.mk" --Multipart_Wed_Oct_25_20:34:10_2000-1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message