From owner-cvs-all Sat Jul 31 13:53:54 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D12E714D06; Sat, 31 Jul 1999 13:53:52 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA84573; Sat, 31 Jul 1999 13:53:02 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Message-Id: <199907312053.NAA84573@freefall.freebsd.org> From: Tim Vanderhoek Date: Sat, 31 Jul 1999 13:53:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make main.c make.1 make.h var.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk hoek 1999/07/31 13:53:02 PDT Modified files: usr.bin/make main.c make.1 make.h var.c Log: Add a -E flag, similar to -e (overide variables from environment) except that -E only operates for a specified variable. Useful since the -e option will often pull-in many unwanted variable overrides (esp. in a make world situation). Uses include overriding BINOWN (which cannot be done by normal methods or through abuses of MAKEFLAGS) or likely for ports to honour CFLAGS (provided they're running on a system whose make(1) has this option). Revision Changes Path 1.32 +15 -4 src/usr.bin/make/main.c 1.18 +7 -3 src/usr.bin/make/make.1 1.9 +5 -2 src/usr.bin/make/make.h 1.13 +20 -5 src/usr.bin/make/var.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message