Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Apr 2002 02:50:37 -0700 (PDT)
From:      Johan Karlsson <k@numeri.campus.luth.se>
To:        freebsd-bugs@FreeBSD.org
Subject:   misc/37516: installworld fails in usr.bin/strip if NOMAN=true
Message-ID:  <200204290950.g3T9ob116611@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR misc/37516; it has been noted by GNATS.

From: Johan Karlsson <k@numeri.campus.luth.se>
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




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