From owner-cvs-all Mon Mar 18 22:11:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E11F437B404; Mon, 18 Mar 2002 22:11:43 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6Bhr32182; Mon, 18 Mar 2002 22:11:43 -0800 (PST) (envelope-from bde) Message-Id: <200203190611.g2J6Bhr32182@freefall.freebsd.org> From: Bruce Evans Date: Mon, 18 Mar 2002 22:11:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.dep.mk bsd.info.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/18 22:11:43 PST Modified files: share/mk bsd.dep.mk bsd.info.mk Log: Removed bogus env(1) commands. make(1) uses a real shell, so "env name=value ... cmd ..." was just a pessimized way of doing "name=value ... cmd ...". Note that make(1) can't optimize either of these to an exec of env(1) or "cmd" even if the second "..." is simple, since it can't tell that the shell metacharacter in "name=value" is actually handled by env(1). Revision Changes Path 1.29 +1 -1 src/share/mk/bsd.dep.mk 1.60 +5 -5 src/share/mk/bsd.info.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message