diff -r c5fd2d996909 -r 49a39bae067c scripts/unify-sources.sh --- a/scripts/unify-sources.sh Sun Mar 29 23:08:20 2009 +0200 +++ b/scripts/unify-sources.sh Sun Mar 29 22:19:14 2009 +0100 @@ -88,7 +88,12 @@ function check_action() { if [ "$3" == 'tabs' ] then - PATTERN=$(echo -e '\t') + if echo $2 | grep -q -v -E 'Makefile\.am$' + then + PATTERN=$(echo -e '\t') + else + PATTERN=' ' + fi elif [ "$3" == 'trailing spaces' ] then PATTERN='\ +$'