From patchwork Thu Oct 15 09:42:21 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Berg X-Patchwork-Id: 1382551 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.infradead.org (client-ip=2001:8b0:10b:1231::1; helo=merlin.infradead.org; envelope-from=hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=sipsolutions.net Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; secure) header.d=lists.infradead.org header.i=@lists.infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=F8ylbwBe; dkim-atps=neutral Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4CBkqw1M7cz9sTL for ; Thu, 15 Oct 2020 20:43:40 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To:From: Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender :Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=z9mnMyx2of/xr3I7FobDAXaFiM/oShqJPHMvI6s+d2s=; b=F8ylbwBee9cROaymbGfPTlRSF0 ++U12R+GfY528TWpvujyWCdmFFhETwmUlM5oZ8t8YF+JVvJBbg0u5lS7sALSG+J7XPXNOJKzR3OyK Vm9M8/BSXwXGDTN4JqSMNcckA0kzej7guy41dd+TTUj5ICjnZX9b0tJaqu7xna7uG1hDIxOXVXrxv PLtAtXIG+Y8Tc55BrqdPe9uxQXZFcBJjWpE/IUxmUETS455llnKs/+NcnaBGvHeakT0gAmoU8SELX ayTnQ7uXhc87AJTFq6Z4gcsBa/Pa7AaybSpPeeqVJ/TUMevcC4qs6m4vf8Ue5HQFFzgifAtJ9KaOC AKdZaP8w==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kSzmN-0000zV-5q; Thu, 15 Oct 2020 09:42:35 +0000 Received: from s3.sipsolutions.net ([2a01:4f8:191:4433::2] helo=sipsolutions.net) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kSzmJ-0000ws-5C for hostap@lists.infradead.org; Thu, 15 Oct 2020 09:42:31 +0000 Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.94) (envelope-from ) id 1kSzmF-006IHm-Dy; Thu, 15 Oct 2020 11:42:27 +0200 From: Johannes Berg To: hostap@lists.infradead.org Subject: [PATCH] build: lib.rules: add common-clean Date: Thu, 15 Oct 2020 11:42:21 +0200 Message-Id: <1602754941-I9e3917110257f1da52b1fc3d29d5e871fa6a7c08@changeid> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20201015_054231_228392_D54C8E0E X-CRM114-Status: GOOD ( 11.49 ) X-Spam-Score: 0.3 (/) X-Spam-Report: SpamAssassin version 3.4.4 on merlin.infradead.org summary: Content analysis details: (0.3 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_NONE SPF: sender does not publish an SPF Record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.3 KHOP_HELO_FCRDNS Relay HELO differs from its IP's reverse DNS X-BeenThere: hostap@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Johannes Berg Sender: "Hostap" Errors-To: hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org From: Johannes Berg During the build reshuffling, I missed this, so doing 'make clean' in a certain src/lib folder doesn't clean up everything anymore. Fix that. Signed-off-by: Johannes Berg --- src/lib.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rules b/src/lib.rules index 59801c5171cb..947617b079d6 100644 --- a/src/lib.rules +++ b/src/lib.rules @@ -25,5 +25,5 @@ install-default: %: %-default @true -clean: +clean: common-clean $(Q)rm -f *~ *.o *.d *.gcno *.gcda *.gcov $(ALL)