git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@334 67a159dc-881f-0410-a524-ba9dfbe2cb84
cleanup-cruft
Tim Yamin 19 years ago
parent 3db01a1ff4
commit d0ce405704

@ -2,7 +2,7 @@ BEGIN { RS="\n"; FS=""; OFS=""; ORS=""; state="0"; }
{ {
if(state == "0") if(state == "0")
{ {
if (match($0, /^title=/)) if (match($0, /^title=/) || match($0, /^title */))
{ {
state = "1"; state = "1";
ORIG = ORIG $0 "\n"; ORIG = ORIG $0 "\n";
@ -47,7 +47,7 @@ if(state == "1")
next; next;
} }
if(!match($0, /^title=/)) if(!(match($0, /^title=/) || match($0, /^title */) ))
{ {
i = 0; i = 0;
commentLookahead = ""; commentLookahead = "";
@ -64,7 +64,7 @@ if(state == "1")
} }
} }
} }
if(have_k == "1" && (match($0, /^title=/) || NR == LIMIT)) if(have_k == "1" && ((match($0, /^title=/) || match($0, /^title */)) || NR == LIMIT))
{ {
state = "2"; state = "2";
print extraA "title=Gentoo Linux (" KV ")\n"; print extraA "title=Gentoo Linux (" KV ")\n";

Loading…
Cancel
Save