Repository: thrift Updated Branches: refs/heads/master d3f7d0e66 -> f57b57ac0
THRIFT-3274 calling "make clean" twice in a row yields make error fix tutorial Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/f57b57ac Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/f57b57ac Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/f57b57ac Branch: refs/heads/master Commit: f57b57ac0b5e890d7d8ebb75610e7fe279833909 Parents: d3f7d0e Author: Roger Meier <[email protected]> Authored: Tue Nov 3 23:28:43 2015 +0100 Committer: Roger Meier <[email protected]> Committed: Tue Nov 3 23:28:43 2015 +0100 ---------------------------------------------------------------------- tutorial/cpp/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/f57b57ac/tutorial/cpp/Makefile.am ---------------------------------------------------------------------- diff --git a/tutorial/cpp/Makefile.am b/tutorial/cpp/Makefile.am index d8a9dbc..184a69d 100755 --- a/tutorial/cpp/Makefile.am +++ b/tutorial/cpp/Makefile.am @@ -71,7 +71,7 @@ AM_CXXFLAGS = -Wall -Wextra -pedantic AM_LDFLAGS = $(BOOST_LDFLAGS) $(LIBEVENT_LDFLAGS) clean-local: - $(RM) -r gen-cpp + $(RM) gen-cpp/* tutorialserver: all ./TutorialServer
