buildrootschalter/sources/uClibc-Config.awk
2002-01-05 20:26:15 +00:00

12 lines
220 B
Awk

BEGIN { FS=" =";
REG1="DODEBUG|INCLUDE_RPC|DOPIC";
REG2="DOLFS";
}
{
if ($0 ~ "^" REG1)
{ print $1 " = false" }
else if ($0 ~ "^" REG2)
{ print $1 " = true" }
else { print $0 }
}