From owner-freebsd-current@FreeBSD.ORG Fri Feb 13 19:40:16 2015 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DD886D61 for ; Fri, 13 Feb 2015 19:40:16 +0000 (UTC) Received: from mail-lb0-x22e.google.com (mail-lb0-x22e.google.com [IPv6:2a00:1450:4010:c04::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 61A05F34 for ; Fri, 13 Feb 2015 19:40:16 +0000 (UTC) Received: by mail-lb0-f174.google.com with SMTP id z11so17479579lbi.5 for ; Fri, 13 Feb 2015 11:40:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=AC8D1REsmxPTf9f2Co51xyexNCa5VoOmkpHCw8P1+6k=; b=EZAcp5TpRiFlQ5WKTD4ijvEhP1K9puUGSwlcK2J7mOtkpONMTZFTgmZfYb0HhrVfKC BiUTLJRHAZ4RQ3a0TRMFA4DQvBdwGsImFAmiDOAGwBgvYi3U61cyX/hbCCej4o64+9mI Sv1KIvXilP7nFWN0NWA2aq9aggFiRqS2+KruyDbP0EMGH3VXZi4RmqCoYW8rp/BS4CGm 8ntVAB5EDAV8sBjcA/9GPBdbguwn74WFy9iLkKlN+3zJ/WCYeLVEqx/JJe9lnpQuBbQE wAwJs70A7PGZ6iEvD080MbPpstm2jiFEiRCq7RjZQp6OhteoEh2QtTjhVyOytmz+eqcS zbhQ== MIME-Version: 1.0 X-Received: by 10.152.45.100 with SMTP id l4mr9754421lam.112.1423856414433; Fri, 13 Feb 2015 11:40:14 -0800 (PST) Received: by 10.114.78.131 with HTTP; Fri, 13 Feb 2015 11:40:14 -0800 (PST) Date: Fri, 13 Feb 2015 14:40:14 -0500 Message-ID: Subject: make regression -- -q doesn't work? From: Ryan Stone To: FreeBSD Current Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2015 19:40:17 -0000 On 10.1-RELEASE, make -q doesn't seem to work anymore: [rstone@wtllab-bsd10-build-64 rstone]cat Makefile foo: bar cp bar foo bar: touch bar clean: rm -f foo bar [rstone@wtllab-bsd10-build-64 rstone]make -q foo; echo $? 1 [rstone@wtllab-bsd10-build-64 rstone]make foo touch bar cp bar foo [rstone@wtllab-bsd10-build-64 rstone]make -q foo; echo $? `foo' is up to date. 1 [rstone@wtllab-bsd10-build-64 rstone]make foo `foo' is up to date. [rstone@wtllab-bsd10-build-64 rstone]echo $? 0 This worked correctly in 8.1-RELEASE. I suspect that this is a bmake-induced regression?