From owner-freebsd-hackers Wed Jun 25 15:01:13 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA16665 for hackers-outgoing; Wed, 25 Jun 1997 15:01:13 -0700 (PDT) Received: from ocean.campus.luth.se (ocean.campus.luth.se [130.240.194.116]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA16656 for ; Wed, 25 Jun 1997 15:01:09 -0700 (PDT) Received: (from karpen@localhost) by ocean.campus.luth.se (8.8.5/8.8.5) id WAA07485 for hackers@freebsd.org; Wed, 25 Jun 1997 22:02:11 +0200 (CEST) From: Mikael Karpberg Message-Id: <199706252002.WAA07485@ocean.campus.luth.se> Subject: Error in /usr/src/etc/Makefile To: hackers@freebsd.org Date: Wed, 25 Jun 1997 22:02:10 +0200 (CEST) X-Mailer: ELM [version 2.4ME+ PL31H (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi! I'm running 2.2-970625-RELENG from releng22.freebsd.org. I have found a small error, and thought it small enough to try making my first patch. /etc/mtree/BSD.x11.dist is not installed by sysinstall at install time. A simple cp /usr/src/etc/mtree/BSD.x11.dist /etc/mtree/ solved that for me, once I did some thinking and started looking for the file. All of a sudden "make install" would work in for the ports, again. :-) The error is, I suspect fixed by the following patch to /usr/src/etc/Makefile: *** Makefile Wed Jun 25 21:50:18 1997 --- Makefile.old Wed Jun 25 21:49:18 1997 *************** *** 22,29 **** # -rwxr-xr-x root.wheel, for the new cron root.wheel BIN3= daily weekly monthly pccard_ether ! MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \ ! BSD.var.dist BSD.x11.dist NAMEDB= PROTO.localhost.rev named.boot named.root make-localhost PPPCNF= ppp.conf.filter.sample ppp.conf.iij.sample ppp.conf.sample \ ppp.conf.server.sample ppp.dialup.sample ppp.linkup.sample \ --- 22,28 ---- # -rwxr-xr-x root.wheel, for the new cron root.wheel BIN3= daily weekly monthly pccard_ether ! MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist BSD.var.dist NAMEDB= PROTO.localhost.rev named.boot named.root make-localhost PPPCNF= ppp.conf.filter.sample ppp.conf.iij.sample ppp.conf.sample \ ppp.conf.server.sample ppp.dialup.sample ppp.linkup.sample \ Now tell me, did I get that right? Both as to making the patch, and the patch itself. I should probably have send-pr:ed this, I guess, but I thought I'd try just mailing first. I don't feel like learning a new program right now. I need to sleep. :-) Regards, Mikael