From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 76545C001E0 for ; Mon, 23 Oct 2023 11:14:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233657AbjJWLOF (ORCPT ); Mon, 23 Oct 2023 07:14:05 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52244 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233661AbjJWLOE (ORCPT ); Mon, 23 Oct 2023 07:14:04 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B4314C4 for ; Mon, 23 Oct 2023 04:14:02 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F41DFC433C7; Mon, 23 Oct 2023 11:14:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1698059642; bh=HIB4hfIzPw92Q0R5HZdWSxd+jQZN+wF90wZ8EqEgW50=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rwVcvdVk6CJZjbDl+zRlKlqdzKouJ5atwB/OTK2Bsd6WdXvz755rC+2df4Z9lketi yBlDaGT2LrpNTrhptCIJsQmppYrz3x7Wa9t/uwB6XAaBbL4P8wyb78tGT7r4Q9YO1X N/v41VT+yfsqGb4OuSef6HEYxCqk7Hmq1t4UxB1w= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Benno Lossin , Alice Ryhl , Andreas Hindborg , Miguel Ojeda Subject: [PATCH 6.5 238/241] kbuild: remove old Rust docs output path Date: Mon, 23 Oct 2023 12:57:04 +0200 Message-ID: <20231023104839.676054166@linuxfoundation.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231023104833.832874523@linuxfoundation.org> References: <20231023104833.832874523@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org 6.5-stable review patch. If anyone has any objections, please let me know. ------------------ From: Miguel Ojeda commit 1db773da58df20772dcc037a47163ce472d39c4d upstream. The Rust code documentation output path moved from `rust/doc` to `Documentation/output/rust/rustdoc`. The `make cleandocs` target takes care of cleaning it now since it is integrated with the rest of the documentation. Thus remove the old reference. Fixes: 48fadf440075 ("docs: Move rustdoc output, cross-reference it") Reviewed-by: Benno Lossin Reviewed-by: Alice Ryhl Reviewed-by: Andreas Hindborg Link: https://lore.kernel.org/r/20231018160145.1017340-2-ojeda@kernel.org Signed-off-by: Miguel Ojeda Signed-off-by: Greg Kroah-Hartman --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Makefile +++ b/Makefile @@ -1595,7 +1595,7 @@ endif # Directories & files removed with 'make clean' CLEAN_FILES += include/ksym vmlinux.symvers modules-only.symvers \ modules.builtin modules.builtin.modinfo modules.nsdeps \ - compile_commands.json .thinlto-cache rust/test rust/doc \ + compile_commands.json .thinlto-cache rust/test \ rust-project.json .vmlinux.objs .vmlinux.export.c # Directories & files removed with 'make mrproper'