[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAO_0yfNV+rabyL95=i8EHJb0BgY+QCGS_30_9eebx9AKEOOnbQ@mail.gmail.com>
Date: Sun, 1 Apr 2012 19:56:26 +0800
From: Yang Bai <hamo.by@...il.com>
To: Prarit Bhargava <prarit@...hat.com>
Cc: linux-kernel@...r.kernel.org, Stephen Boyd <sboyd@...eaurora.org>,
Michal Marek <mmarek@...e.cz>
Subject: Re: [PATCH] scripts, Fix 'make cscope'
On Sun, Apr 1, 2012 at 7:31 PM, Prarit Bhargava <prarit@...hat.com> wrote:
> commit 66979224c0d288331edcadb1e6ebd978d920d476, scripts: refactor remove
> structure forward declarations, breaks 'make cscope' which now gives the
> following error:
>
> [prarit@...rit linux-2.6]$ make cscope
> GEN cscope
> sed: can't read cscope: No such file or directory
> make: *** [cscope] Error 2
>
Thanks for pointing this out.
> Fix a typo in the commit.
>
> Signed-off-by: Prarit Bhargava <prarit@...hat.com>
> Cc: Yang Bai <hamo.by@...il.com>
> Cc: Stephen Boyd <sboyd@...eaurora.org>
> Cc: Michal Marek <mmarek@...e.cz>
> ---
> scripts/tags.sh | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/scripts/tags.sh b/scripts/tags.sh
> index 0d6004e..b501e84 100755
> --- a/scripts/tags.sh
> +++ b/scripts/tags.sh
> @@ -255,5 +255,5 @@ esac
>
> # Remove structure forward declarations.
> if [ -n $remove_structs ]; then
> - LANG=C sed -i -e '/^\([a-zA-Z_][a-zA-Z0-9_]*\)\t.*\t\/\^struct \1;.*\$\/;"\tx$/d' $1
> + LANG=C sed -i -e '/^\([a-zA-Z_][a-zA-Z0-9_]*\)\t.*\t\/\^struct \1;.*\$\/;"\tx$/d' tags
> fi
> --
> 1.7.1
>
But this does not fix the real problem and introduce the origin
problem of make TAGS back.
Could you try this patch?
diff --git a/scripts/tags.sh b/scripts/tags.sh
index 0d6004e..cf7b12f 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -254,6 +254,6 @@ case "$1" in
esac
# Remove structure forward declarations.
-if [ -n $remove_structs ]; then
+if [ -n "$remove_structs" ]; then
LANG=C sed -i -e '/^\([a-zA-Z_][a-zA-Z0-9_]*\)\t.*\t\/\^struct
\1;.*\$\/;"\tx$/d' $1
fi
--
"""
Keep It Simple,Stupid.
"""
Chinese Name: 白杨
Nick Name: Hamo
Homepage: http://hamobai.com/
GPG KEY ID: 0xA4691A33
Key fingerprint = 09D5 2D78 8E2B 0995 CF8E 4331 33C4 3D24 A469 1A33
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists