From owner-freebsd-bugs Sat Jan 6 20:40:25 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D1A237B699 for ; Sat, 6 Jan 2001 20:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f074e1H02408; Sat, 6 Jan 2001 20:40:01 -0800 (PST) (envelope-from gnats) Received: from C456086-A.bllvu1.wa.home.com (c456086-a.bllvu1.wa.home.com [65.0.111.16]) by hub.freebsd.org (Postfix) with ESMTP id 7BE9A37B400 for ; Sat, 6 Jan 2001 20:34:44 -0800 (PST) Received: (from root@localhost) by C456086-A.bllvu1.wa.home.com (8.11.1/8.11.1) id f06KXWC00394; Sat, 6 Jan 2001 20:33:32 GMT (envelope-from kargl) Message-Id: <200101062033.f06KXWC00394@C456086-A.bllvu1.wa.home.com> Date: Sat, 6 Jan 2001 20:33:32 GMT From: kargl@apl.washington.edu Reply-To: kargl@apl.washington.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: misc/24122: make buildworld broken due to sysinstall.8 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >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