On Mon, Jan 20, 2014 at 01:30:30PM +0100, Peter Zijlstra wrote:
> Then again, people seem to whinge if you don't keep these Kbuild files
> sorted, but manually sorting 29 files is just not something I like to
> do.

This seems to do it..

gawk '/^generic-y/ {
        i = 3;
        do {
                for (; i<=NF; i++) {
                        if ($i == "\\") {
                                getline;
                                i=1;
                                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];
}'


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to