From owner-freebsd-doc@FreeBSD.ORG Mon Aug 22 12:14:55 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CB4C16A422 for ; Mon, 22 Aug 2005 12:14:55 +0000 (GMT) (envelope-from matteo@freebsd.org) Received: from vsmtp4.tin.it (vsmtp4.tin.it [212.216.176.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8209B43D5E for ; Mon, 22 Aug 2005 12:14:54 +0000 (GMT) (envelope-from matteo@freebsd.org) Received: from kaiser.sig11.org (82.50.115.26) by vsmtp4.tin.it (7.2.060.1) id 42E79F0D009A9B41 for freebsd-doc@freebsd.org; Mon, 22 Aug 2005 14:14:50 +0200 Received: by kaiser.sig11.org (Postfix, from userid 1000) id 29CBC633F; Mon, 22 Aug 2005 14:14:52 +0200 (CEST) Date: Mon, 22 Aug 2005 14:14:52 +0200 From: Matteo Riondato To: freebsd-doc@freebsd.org Message-ID: <20050822121452.GF941@kaiser.sig11.org> Mail-Followup-To: Matteo Riondato , freebsd-doc@freebsd.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ReaqsoxgOBHFXBhH" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: ndis(4) not installed on amd64 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Aug 2005 12:14:55 -0000 --ReaqsoxgOBHFXBhH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi folks, I noticed ndis(4) doesn't get installed on amd64 systems, while other ndis* man pages are. ndis(4) source is src/share/man/man4/man4.i386/ndis.4 . To solve this issue, ndis.4 should be moved to src/share/man/man4 and the attached patch should be applied to src/share/man/man4/Makefile. Best Regards -- Matteo Riondato FreeBSD Volunteer (http://freebsd.org) G.U.F.I. Staff Member (http://www.gufi.org) FreeSBIE Developer (http://www.freesbie.org) --ReaqsoxgOBHFXBhH Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.diff" --- Makefile.old Mon Aug 22 14:10:59 2005 +++ Makefile Mon Aug 22 14:12:28 2005 @@ -161,6 +161,7 @@ natmip.4 \ ncr.4 \ ncv.4 \ + ${_ndis.4} \ netgraph.4 \ netintro.4 \ ng_async.4 \ @@ -432,6 +433,7 @@ MLINKS+=mem.4 kmem.4 MLINKS+=mn.4 if_mn.4 MLINKS+=my.4 if_my.4 +MLINKS+=ndis.4 if_ndis.4 MLINKS+=netintro.4 net.4 \ netintro.4 networking.4 MLINKS+=nge.4 if_nge.4 @@ -482,6 +484,8 @@ MLINKS+=xl.4 if_xl.4 .if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" +_ndis.4= ndis.4 +_if_ndis.4= if_ndis.4 _nve.4= nve.4 _if_nve.4= if_nve.4 .endif --ReaqsoxgOBHFXBhH--