diff -r e7eb04ece02c -r 07ed3735ce1b scripts/unify-sources.sh
--- a/scripts/unify-sources.sh	Fri Mar 27 09:30:22 2009 +0000
+++ b/scripts/unify-sources.sh	Fri Mar 27 10:34:43 2009 +0000
@@ -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='\ +$'