You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2014/07/27 14:50:56 UTC

git commit: make clean should rm src/gen instead of emptying

Repository: thrift
Updated Branches:
  refs/heads/master f04d9f45d -> 557d6ea41


make clean should rm src/gen instead of emptying


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/557d6ea4
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/557d6ea4
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/557d6ea4

Branch: refs/heads/master
Commit: 557d6ea410c03a4cfb126e2031b605f8692c2a6a
Parents: f04d9f4
Author: Jens Geyer <je...@apache.org>
Authored: Sun Jul 27 14:48:28 2014 +0200
Committer: Jens Geyer <je...@apache.org>
Committed: Sun Jul 27 14:48:28 2014 +0200

----------------------------------------------------------------------
 test/go/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/557d6ea4/test/go/Makefile.am
----------------------------------------------------------------------
diff --git a/test/go/Makefile.am b/test/go/Makefile.am
index 3ac1d8b..66f81ad 100644
--- a/test/go/Makefile.am
+++ b/test/go/Makefile.am
@@ -45,7 +45,7 @@ bin/stress: gopath
 	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/...