summaryrefslogtreecommitdiffstats
path: root/sources/uClibc-Config.awk
blob: c265535a31c8746fffaf41a989f203c16f489800 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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 } 
}