From owner-svn-src-stable@FreeBSD.ORG Sun Apr 5 00:52:00 2009 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55F0E106566C; Sun, 5 Apr 2009 00:52:00 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 438AB8FC14; Sun, 5 Apr 2009 00:52:00 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n350pxl4088819; Sun, 5 Apr 2009 00:51:59 GMT (envelope-from ru@svn.freebsd.org) Received: (from ru@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n350pxtS088818; Sun, 5 Apr 2009 00:51:59 GMT (envelope-from ru@svn.freebsd.org) Message-Id: <200904050051.n350pxtS088818@svn.freebsd.org> From: Ruslan Ermilov Date: Sun, 5 Apr 2009 00:51:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r190707 - stable/7 X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2009 00:52:01 -0000 Author: ru Date: Sun Apr 5 00:51:59 2009 New Revision: 190707 URL: http://svn.freebsd.org/changeset/base/190707 Log: MFC: Don't put "install-info" to the list of install-tools if we're installing with -DWITHOUT_INFO. Approved by: re (kib) Modified: stable/7/Makefile.inc1 (contents, props changed) Modified: stable/7/Makefile.inc1 ============================================================================== --- stable/7/Makefile.inc1 Sun Apr 5 00:24:49 2009 (r190706) +++ stable/7/Makefile.inc1 Sun Apr 5 00:51:59 2009 (r190707) @@ -597,10 +597,14 @@ installcheck_UGID: # # Installs everything compiled by a 'buildworld'. # +.if ${MK_INFO} != "no" +_install-info= install-info +.endif + distributeworld installworld: installcheck mkdir -p ${INSTALLTMP} for prog in [ awk cap_mkdb cat chflags chmod chown \ - date echo egrep find grep install-info \ + 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` ${INSTALLTMP}; \