From owner-freebsd-stable@FreeBSD.ORG Tue May 30 15:45:16 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E2FD16A587 for ; Tue, 30 May 2006 15:45:16 +0000 (UTC) (envelope-from root@scienceclue.ath.cx) Received: from scienceclue.ath.cx (mic92-1-87-90-12-116.dsl.club-internet.fr [87.90.12.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id A239B43D5E for ; Tue, 30 May 2006 15:45:15 +0000 (GMT) (envelope-from root@scienceclue.ath.cx) Received: from scienceclue.ath.cx (localhost [127.0.0.1]) by scienceclue.ath.cx (8.13.6/8.13.6) with ESMTP id k4UFkLPI001631 for ; Tue, 30 May 2006 17:46:21 +0200 (CEST) (envelope-from root@scienceclue.ath.cx) Received: (from root@localhost) by scienceclue.ath.cx (8.13.6/8.13.6/Submit) id k4UFkF5Z001630 for freebsd-stable@freebsd.org; Tue, 30 May 2006 17:46:15 +0200 (CEST) (envelope-from root) Date: Tue, 30 May 2006 17:46:15 +0200 From: Mathieu Prevot To: freebsd-stable@freebsd.org Message-ID: <20060530154615.GA1544@scienceclue.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: .MAKEFLAGS edited is not taken into account e.g. in make.conf X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mathieu Prevot List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 May 2006 15:45:17 -0000 Hello, only real arguments (passed with command) are taken into account, when I edit .MAKEFLAGS (makefile or /etc/make.conf) there is a new .MAKEFLAGS but there no expected effects. You can test this with the -dA option, and with the following ./makefile content (extract): ----- .MAKEFLAGS+= -dA disp: @echo ${.MAKEFLAGS} ----- `make -dA` works fine `make -dA disp` displays "-dA -dA" BUT `make` does NOT work i.e. there is no debug output `make disp` displays "-dA" I use RELENG_6 amd64 ... regards, Mathieu