diff --git a/tools/protoc.py b/tools/protoc.py index fa4fff0d39b09e2e449fe7212718c572ac287e6b..51f1ca4e223665d6f43f4faa7b5e5a2dfd2d2e52 100755 --- a/tools/protoc.py +++ b/tools/protoc.py @@ -24,10 +24,10 @@ protocs = 'protoc' ProtocAction = SCons.Action.Action('$PROTOCCOM', '$PROTOCCOMSTR') def ProtocEmitter(target, source, env): - print "Pre-Emitter PROTOC SOURCE:", [str(s) for s in source] - print "Pre-Emitter PROTOC TARGET:", [str(s) for s in target] + #print "Pre-Emitter PROTOC SOURCE:", [str(s) for s in source] + #print "Pre-Emitter PROTOC TARGET:", [str(s) for s in target] for src in source: - print "src="+ str(src) + # print "src="+ str(src) modulename = os.path.splitext(str(src))[0] if env['PROTOCOUTDIR']: @@ -40,8 +40,8 @@ def ProtocEmitter(target, source, env): except KeyError: pass - print "Post-Emitter PROTOC SOURCE:", [str(s) for s in source] - print "Post-Emitter PROTOC TARGET:", [str(s) for s in target] + #print "Post-Emitter PROTOC SOURCE:", [str(s) for s in source] + #print "Post-Emitter PROTOC TARGET:", [str(s) for s in target] return target, source diff --git a/turbo-rpc/SConscript b/turbo-rpc/SConscript index 95a38324554d9d176d41dbf1dcc6bc0f4b84ddcb..1c472fdab5e74197848b902c71a169e3af987d64 100644 --- a/turbo-rpc/SConscript +++ b/turbo-rpc/SConscript @@ -26,7 +26,7 @@ env.Append(CXXFLAGS=" -g -fmax-errors=2 -Wall -Werror -std=c++11" ) proto_files = env.protoc( [], "turbo.proto") for file in proto_files: - print "file="+str(file); + # print "file="+str(file); if str(file).endswith(".h"): inst = env.Install("$TURBO_HOME/include/turbo-rpc/", file); ret = ret + inst