THRIFT-2768: Whitespace Fixup
Client: General (Makefile.am)
Patch: Jens Geyer

Reverted makefile.am - tabs are not optional there
diff --git a/test/go/Makefile.am b/test/go/Makefile.am
index afea106..66f81ad 100644
--- a/test/go/Makefile.am
+++ b/test/go/Makefile.am
@@ -24,36 +24,36 @@
 all: bin/testclient bin/testserver bin/stress
 
 ThriftTest.thrift: $(THRIFTTEST)
-    grep -v list.*map.*list.*map $(THRIFTTEST) > ThriftTest.thrift
+	grep -v list.*map.*list.*map $(THRIFTTEST) > ThriftTest.thrift
 
 # Thrift for GO has problems with complex map keys: THRIFT-2063
 gopath: $(THRIFT) ThriftTest.thrift
-    mkdir -p src/gen
-    $(THRIFTCMD) ThriftTest.thrift
-    $(THRIFTCMD) ../StressTest.thrift
-    ln -nfs ../../../lib/go/thrift src/thrift
-    GOPATH=`pwd` $(GO) get code.google.com/p/gomock/gomock
-    touch gopath
+	mkdir -p src/gen
+	$(THRIFTCMD) ThriftTest.thrift
+	$(THRIFTCMD) ../StressTest.thrift
+	ln -nfs ../../../lib/go/thrift src/thrift
+	GOPATH=`pwd` $(GO) get code.google.com/p/gomock/gomock
+	touch gopath
 
 bin/testclient: gopath
-    GOPATH=`pwd` $(GO) install bin/testclient
+	GOPATH=`pwd` $(GO) install bin/testclient
 
 bin/testserver: gopath
-    GOPATH=`pwd` $(GO) install bin/testserver
+	GOPATH=`pwd` $(GO) install bin/testserver
 
 bin/stress: gopath
-    GOPATH=`pwd` $(GO) install bin/stress
+	GOPATH=`pwd` $(GO) install bin/stress
 
 clean-local:
-    $(RM) -r src/gen src/code.google.com src/thrift bin pkg gopath ThriftTest.thrift
+	$(RM) -r src/gen src/code.google.com src/thrift bin pkg gopath ThriftTest.thrift
 
 check: gopath
-    GOPATH=`pwd` $(GO) test -v common/...
+	GOPATH=`pwd` $(GO) test -v common/...
 
 genmock: gopath
-    GOPATH=`pwd` $(GO) install code.google.com/p/gomock/mockgen
-    GOPATH=`pwd` bin/mockgen -destination=src/common/mock_handler.go -package=common gen/thrifttest ThriftTest
+	GOPATH=`pwd` $(GO) install code.google.com/p/gomock/mockgen
+	GOPATH=`pwd` bin/mockgen -destination=src/common/mock_handler.go -package=common gen/thrifttest ThriftTest
 
 EXTRA_DIST = \
-    src/bin \
-    src/common
+	src/bin \
+	src/common