Repository: thrift Updated Branches: refs/heads/master 792db4e92 -> d3f7d0e66
THRIFT-3274 calling "make clean" twice in a row yields make error This closes #676 Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/d3f7d0e6 Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/d3f7d0e6 Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/d3f7d0e6 Branch: refs/heads/master Commit: d3f7d0e66ce0a1dc37f2eb0b90f303c2f5b5979e Parents: 792db4e Author: Nobuaki Sukegawa <[email protected]> Authored: Tue Nov 3 13:42:00 2015 +0900 Committer: Roger Meier <[email protected]> Committed: Tue Nov 3 21:11:40 2015 +0100 ---------------------------------------------------------------------- lib/cpp/test/Makefile.am | 2 +- test/cpp/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/d3f7d0e6/lib/cpp/test/Makefile.am ---------------------------------------------------------------------- diff --git a/lib/cpp/test/Makefile.am b/lib/cpp/test/Makefile.am index 44b94a7..4b7a99f 100755 --- a/lib/cpp/test/Makefile.am +++ b/lib/cpp/test/Makefile.am @@ -360,7 +360,7 @@ AM_LDFLAGS = $(BOOST_LDFLAGS) AM_CXXFLAGS = -Wall -Wextra -pedantic clean-local: - $(RM) -r gen-cpp + $(RM) gen-cpp/* EXTRA_DIST = \ concurrency \ http://git-wip-us.apache.org/repos/asf/thrift/blob/d3f7d0e6/test/cpp/Makefile.am ---------------------------------------------------------------------- diff --git a/test/cpp/Makefile.am b/test/cpp/Makefile.am index c609a71..9c4ac07 100755 --- a/test/cpp/Makefile.am +++ b/test/cpp/Makefile.am @@ -111,7 +111,7 @@ AM_CXXFLAGS = -Wall -Wextra -pedantic AM_LDFLAGS = $(BOOST_LDFLAGS) $(LIBEVENT_LDFLAGS) $(ZLIB_LIBS) clean-local: - $(RM) -r gen-cpp + $(RM) gen-cpp/* style-local: $(CPPSTYLE_CMD)
