From owner-freebsd-bugs Sat Apr 27 18:50:11 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 ADE4637B417 for ; Sat, 27 Apr 2002 18:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3S1o1k11355; Sat, 27 Apr 2002 18:50:01 -0700 (PDT) (envelope-from gnats) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by hub.freebsd.org (Postfix) with ESMTP id 5233437B404 for ; Sat, 27 Apr 2002 18:41:45 -0700 (PDT) Received: (from k@localhost) by numeri.campus.luth.se (8.11.6/8.11.6) id g3S1fhW46914; Sun, 28 Apr 2002 03:41:43 +0200 (CEST) (envelope-from k) Message-Id: <200204280141.g3S1fhW46914@numeri.campus.luth.se> Date: Sun, 28 Apr 2002 03:41:43 +0200 (CEST) From: Johan Karlsson Reply-To: Johan Karlsson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: misc/37516: installworld fails in usr.bin/strip if NOMAN=true 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 >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