From owner-freebsd-bugs Mon Apr 29 2:53:33 2002 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 18A0837B42A for ; Mon, 29 Apr 2002 02:50:37 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3T9ob116611; Mon, 29 Apr 2002 02:50:37 -0700 (PDT) (envelope-from gnats) Date: Mon, 29 Apr 2002 02:50:37 -0700 (PDT) Message-Id: <200204290950.g3T9ob116611@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: misc/37516: installworld fails in usr.bin/strip if NOMAN=true Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/37516; it has been noted by GNATS. From: Johan Karlsson To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: misc/37516: installworld fails in usr.bin/strip if NOMAN=true Date: Sun, 28 Apr 2002 03:41:43 +0200 (CEST) >Number: 37516 >Category: misc >Synopsis: installworld fails in usr.bin/strip if NOMAN=true >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 27 18:50:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Johan Karlsson >Release: FreeBSD 4.5-RC i386 >Organization: >Environment: System: FreeBSD numeri.campus.luth.se 4.5-RC FreeBSD 4.5-RC #1: Sat Jan 19 14:40:08 CET 2002 k@numeri.campus.luth.se:/usr/home/builds/usr/src/sys/NUMERI i386 >Description: strip/Makefile uses 'maninstall' unconditioned bsd.man.mk is not included in bsd.prog.mk if NOMAN is defined. Hence install fails in strip if NOMAN=true >How-To-Repeat: make -DNOMAN installworld >Fix: Index: usr.bin/strip/Makefile =================================================================== RCS file: /home/ncvs/src/usr.bin/strip/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- usr.bin/strip/Makefile 2001/12/12 23:29:13 1.13 +++ usr.bin/strip/Makefile 2002/04/27 23:55:35 @@ -16,7 +16,10 @@ .endif .endif -install: maninstall +.if !defined(NOMAN) +_maninstall = maninstall +.endif +install: ${_maninstall} ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ maybe_stripped ${DESTDIR}${BINDIR}/strip >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message