From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Morton Subject: [nacked] scripts-add-a-intermediate-file-for-make-gtags.patch removed from -mm tree Date: Thu, 21 May 2020 10:28:13 -0700 Message-ID: <20200521172813.wn83p0-Eq%akpm@linux-foundation.org> References: <20200513175005.1f4839360c18c0238df292d1@linux-foundation.org> Reply-To: linux-kernel@vger.kernel.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mail.kernel.org ([198.145.29.99]:49204 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727955AbgEUR2O (ORCPT ); Thu, 21 May 2020 13:28:14 -0400 In-Reply-To: <20200513175005.1f4839360c18c0238df292d1@linux-foundation.org> Sender: mm-commits-owner@vger.kernel.org List-Id: mm-commits@vger.kernel.org To: corbet@lwn.net, gregkh@linuxfoundation.org, masahiroy@kernel.org, mchehab+huawei@kernel.org, mm-commits@vger.kernel.org, xujialu@vimux.org The patch titled Subject: scripts/tags.sh: add a intermediate file for 'make gtags' has been removed from the -mm tree. Its filename was scripts-add-a-intermediate-file-for-make-gtags.patch This patch was dropped because it was nacked ------------------------------------------------------ =46rom: xujialu Subject: scripts/tags.sh: add a intermediate file for 'make gtags' As 'GTAGS Manual' said: If =C2=B4gtags.files=C2=B4 exists in the current di= rectory directory or a file is specified by the -f option, target files are limited by it. So add gtags.files just like cscope.files. Link: http://lkml.kernel.org/r/20200502052619.26457-3-xujialu@vimux.org Signed-off-by: xujialu Cc: Greg Kroah-Hartman Cc: Jonathan Corbet Cc: Masahiro Yamada Cc: Mauro Carvalho Chehab Signed-off-by: Andrew Morton --- Makefile | 2 +- scripts/tags.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) --- a/Makefile~scripts-add-a-intermediate-file-for-make-gtags +++ a/Makefile @@ -1405,7 +1405,7 @@ MRPROPER_FILES +=3D .config .config.old .v =20 # Directories & files removed with 'make distclean' DISTCLEAN_DIRS +=3D -DISTCLEAN_FILES +=3D tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS +DISTCLEAN_FILES +=3D tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS gtags.files =20 # clean - Delete most, but leave enough to build external modules # --- a/scripts/tags.sh~scripts-add-a-intermediate-file-for-make-gtags +++ a/scripts/tags.sh @@ -142,7 +142,8 @@ docscope() =20 dogtags() { - all_target_sources | gtags -i -f - + all_target_sources > gtags.files + gtags -i -f gtags.files } =20 # Basic regular expressions with an optional /kind-spec/ for ctags and _ Patches currently in -mm which might be from xujialu@vimux.org are scripts-support-compiled-source-improved-precise.patch