no_reconfigure_override.sh
Go to the documentation of this file.
1 #!/bin/bash
2 
3 for pfile in `ack -l "reconfigure(.*)override"`
4 do
5  echo "checking ${pfile}"
6  sed -i.bak -r "s%(.*void[[:space:]]+reconfigure\(.*\))[[:space:]]*override[[:space:]]*(.*)%\1 \2%g" ${pfile}
7 done
8 
9 exit 0