From owner-freebsd-current@FreeBSD.ORG Wed Sep 6 05:51:04 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 082A416A4EB for ; Wed, 6 Sep 2006 05:51:04 +0000 (UTC) (envelope-from gpr@nvnpp.vrn.ru) Received: from relay.nvnpp.vrn.ru (relay.nvnpp.vrn.ru [195.98.93.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E4D343D46 for ; Wed, 6 Sep 2006 05:51:02 +0000 (GMT) (envelope-from gpr@nvnpp.vrn.ru) Received: from gpr by relay.nvnpp.vrn.ru with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GKqJQ-0008NM-Rb for freebsd-current@freebsd.org; Wed, 06 Sep 2006 09:51:00 +0400 Date: Wed, 6 Sep 2006 09:51:00 +0400 From: Gennady Proskurin To: freebsd-current@freebsd.org Message-ID: <20060906055100.GC29571@relay.nvnpp.vrn.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.12-2006-07-14 Subject: installworld with WITHOUT_INFO broken X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Sep 2006 05:51:04 -0000 gpr@gw /usr/src % make -D WITHOUT_INFO installworld mkdir -p /tmp/install.MLOXViKX for prog in [ awk cap_mkdb cat chflags chmod chown date echo egrep find grep install-info ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl test true uname wc zic; do cp `which $prog` /tmp/install.MLOXViKX; done usage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-lpv] source_file target_file cp [-R [-H | -L | -P]] [-f | -i | -n] [-lpv] source_file ... target_directory *** Error code 64 Stop in /usr/src. *** Error code 1 Stop in /usr/src. Exit 1 gpr@gw /usr/src % which install-info install-info: Command not found. Exit 1 gpr@gw /usr/src % The workaround is something like: touch /usr/bin/install-info make installworld rm /usr/bin/install-info The fix should be conditional include of install-info in above for statement, depending on NO_INFO -- Gennady