From patchwork Wed Mar 12 13:00:25 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 14013495 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C76A912E7F for ; Wed, 12 Mar 2025 13:00:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741784429; cv=none; b=NWxu3EGjH43GVb43huFVYSeiCNdK648KDm4w6arwRSGu8He3TO3/gjjjGgnTJH67eKGgZ3Yp3jxTTApo+M/shuynBb9dZ0BF08K5VLXwaXy6imDK165wiEZ5M1fs356/oXbs0DfOxoicmtb7VcHRjg9UFZTRJWbqbub9mBxoL7U= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741784429; c=relaxed/simple; bh=gcRcEBTQp3VeXSJBtREriILmC4Kpr5mHejhkt7x6L98=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Ee791gYY2+pFdS3dfSY92b0pCfaK65hA1nwZZkvzNPsJwcqyBHMb4UWTbYqQ23fCh1ALSfaigpp/NhHohflc81xKkzOUMvnj117rzAgiw0XwwLwpGxK0Hd9sXsgLASkWtdYMwRzOwN6jRL/7N1gTXB27ucmxFxgl+m2ybKFCHjA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=i1O7NLYE; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="i1O7NLYE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DBF13C4CEE3; Wed, 12 Mar 2025 13:00:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1741784429; bh=gcRcEBTQp3VeXSJBtREriILmC4Kpr5mHejhkt7x6L98=; h=From:To:Cc:Subject:Date:From; b=i1O7NLYElfKFp8nvN2bdyvgGCS86toPAuipVNiKuDo542mXdKK3kMQBeFxqP+oC0W mpqgdrPa6CwVArkI+1tvPxYjxMYpjz2Wl1o63YK4hEBnVRyjzNN3hPz/2rKK3fMyW9 CbqCfQxJwCQ304jG3VrCKId5MN+lhsu1aXr+YQuH+SHaRYhcJ6fJZIpjBVpOAUQ1V0 Alq0F1VoQ8YGhzgKAxEkJWb6x9cR4l5+kzp9xas8yv7kUf0HoPZhg6ArD7JnAHqvbo O6PUOjNYPvp6exKup7380GSLfi2fynUAqa/nVTrMmSa1GqrZg8rrjYhifxc6Y6+Nfl QJGNOzn448HAg== From: cel@kernel.org To: Cc: Daniel Gomez , Chuck Lever Subject: [RFC PATCH] refs: "make mrproper" should clean out generated refs files Date: Wed, 12 Mar 2025 09:00:25 -0400 Message-ID: <20250312130025.1403783-1-cel@kernel.org> X-Mailer: git-send-email 2.48.1 Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Chuck Lever Doing a "make mrproper" should force the regeneration of the default and user refs files. Otherwise these become stale because kdevops appears to check if they exist, but not if they are newer than the source yaml files. Signed-off-by: Chuck Lever --- scripts/build.Makefile | 2 ++ 1 file changed, 2 insertions(+) Simple patch, but might be controversial, so I'm posting for comments. diff --git a/scripts/build.Makefile b/scripts/build.Makefile index 4d3d90ab01ef..f4100bc06347 100644 --- a/scripts/build.Makefile +++ b/scripts/build.Makefile @@ -8,6 +8,8 @@ clean: $(clean-subdirs) PHONY += mrproper mrproper: + @$(Q)rm -rf $(CURDIR)/workflows/linux/refs/default/ + @$(Q)rm -rf $(CURDIR)/workflows/linux/refs/user/ @$(Q)rm -rf $(CURDIR)/include/config/ @$(Q)rm -rf $(CURDIR)/include/generated/ @$(Q)rm -f .config