Skip to content

Commit 82eaa6a

Browse files
committed
Removed debug output.
1 parent 4964e84 commit 82eaa6a

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

boost.py

-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,6 @@ def CheckBoostDateTime(context):
334334
}
335335
"""
336336
context.Message('Check building against Boost.DateTime... ')
337-
print("env['CC']: %s, env['CXX']: %s" % (context.env['CC'], context.env['CXX']))
338337
_set_boost_path(context)
339338
if context.env['CC'] == 'cl':
340339
# Use msvc's autolinking support.

protobuf.py

-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def CheckProtobuf(context):
4444
print("Cannot find protoc!")
4545
return False
4646
context.Message('Check that protobuf header files are available...')
47-
print("env['CC']: %s, env['CXX']: %s" % (context.env['CC'], context.env['CXX']))
4847
source_file = r"""
4948
#include <google/protobuf/generated_message_util.h>
5049
#include <google/protobuf/message.h>
@@ -74,7 +73,6 @@ def CheckProtobuf(context):
7473
print("Cannot build with PROTOBUF headers.")
7574
return False
7675
context.Result(1)
77-
print("env['CC']: %s, env['CXX']: %s" % (context.env['CC'], context.env['CXX']))
7876
return True
7977
_check_dict['protobuf'] = {'options': _protobuf_option_dict,
8078
'checks': [CheckProtobuf]}

0 commit comments

Comments
 (0)