Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Jan 2001 20:33:32 GMT
From:      kargl@apl.washington.edu
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   misc/24122: make buildworld broken due to sysinstall.8
Message-ID:  <200101062033.f06KXWC00394@C456086-A.bllvu1.wa.home.com>

next in thread | raw e-mail | index | archive | help

>Number:         24122
>Category:       misc
>Synopsis:       make buildworld broken due to sysinstall.
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jan 06 20:40:01 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     Steven G. Kargl
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
apl-uw
>Environment:
System: FreeBSD C456086-A.bllvu1.wa.home.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Jan 6 20:15:50 GMT 2001 kargl@C456086-A.bllvu1.wa.home.com:/usr/obj/usr/src/sys/C456086-A i386


	
>Description:
	
If you do not have src/release in your source tree, then
the attempt to install sysinstall.8 breaks world.  In the
6 years I've run FreeBSD, I've never issues a "make release"
command, and so I've never required the source in src/release.


>How-To-Repeat:

rm -rf src/release
make buildworld
>Fix:
Apply this patch in src/share/man/man8

--- Makefile.orig	Sat Jan  6 20:24:04 2001
+++ Makefile	Sat Jan  6 20:27:46 2001
@@ -3,8 +3,11 @@
 
 .PATH: ${.CURDIR}/../../../release/sysinstall
 
-MAN8=	adding_user.8 crash.8 diskless.8 intro.8 picobsd.8 rc.8 sticky.8 \
-	sysinstall.8
+MAN8=	adding_user.8 crash.8 diskless.8 intro.8 picobsd.8 rc.8 sticky.8
+
+.if exist(${.CURDIR}/../../../release/sysinstall)
+MAN8+=	sysinstall.8
+.endif
 
 MLINKS=	rc.8 rc.serial.8 rc.8 rc.pccard.8 rc.8 rc.network.8 \
 	rc.8 rc.firewall.8 rc.8 rc.atm.8 rc.8 rc.local.8 rc.8 rc.shutdown.8

>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200101062033.f06KXWC00394>