Date: Wed, 25 Oct 2000 20:34:10 +0900 From: Jun Kuriyama <kuriyama@imgsrc.co.jp> To: Doc Team <freebsd-doc@FreeBSD.org> Subject: Around web.mk things Message-ID: <7m7l6x40jx.wl@waterblue.imgsrc.co.jp>
next in thread | raw e-mail | index | archive | help
--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 <kuriyama@imgsrc.co.jp> // IMG SRC, Inc. <kuriyama@FreeBSD.org> // 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?7m7l6x40jx.wl>