From owner-cvs-src@FreeBSD.ORG Sat Oct 23 21:34:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A27B16A4CE; Sat, 23 Oct 2004 21:34:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC96543D1D; Sat, 23 Oct 2004 21:34:41 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i9NLYfXs029320; Sat, 23 Oct 2004 21:34:41 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i9NLYfZO029319; Sat, 23 Oct 2004 21:34:41 GMT (envelope-from ru) Message-Id: <200410232134.i9NLYfZO029319@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 23 Oct 2004 21:34:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make compat.c job.c job.h main.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2004 21:34:42 -0000 ru 2004-10-23 21:34:41 UTC FreeBSD src repository Modified files: usr.bin/make compat.c job.c job.h main.c Log: Expand the scope of the .SHELL specification to also cover the compat mode of operation and the != operator. While here, fixed a bug in the .SHELL directive processing when only the name= attribute is specified and no built-in shell matches this name, causing null pointer dereference. Obtained from: NetBSD (except for bugs) Revision Changes Path 1.38 +5 -2 src/usr.bin/make/compat.c 1.51 +33 -18 src/usr.bin/make/job.c 1.22 +4 -0 src/usr.bin/make/job.h 1.92 +4 -10 src/usr.bin/make/main.c