lkml.org 
[lkml]   [2014]   [Feb]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [tip:core/locking] locking/mcs: Order the header files in Kbuild of each architecture in alphabetical order
On Mon, Feb 10, 2014 at 05:32:32AM -0800, tip-bot for Tim Chen wrote:

This script is actually buggy and lost some headers; the fixed version
is as follows:

> for i in arch/*/include/asm/Kbuild
> do
> cat $i | gawk '/^generic-y/ {
> i = 3;
> do {
n = NF;
for (; i <= n; i++) {
> if ($i == "\\") {
> getline;
i = 0;
> continue;
> }
> if ($i != "")
> hdr[$i] = $i;
> }
> break;
> } while (1);
> next;
> }
> // {
> print $0;
> }
> END {
> n = asort(hdr);
> for (i = 1; i <= n; i++)
> print "generic-y += " hdr[i];
> }' > ${i}.sorted;
> mv ${i}.sorted $i;
> done


\
 
 \ /
  Last update: 2014-02-10 15:41    [W:0.067 / U:0.064 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site