boost_check_library: Python 3 compatible prints

This commit is contained in:
Nikita Kniazev 2018-12-13 18:58:33 +00:00 committed by Peter Dimov
parent d3095768ff
commit 1645f28cf1

View file

@ -163,11 +163,11 @@ class check_library():
self.library_key = self.library.split('/',1)[1]
if self.debug:
print ">>> cwd: %s"%(os.getcwd())
print ">>> actions: %s"%(self.actions)
print ">>> boost_root: %s"%(self.boost_root)
print ">>> library: %s"%(self.library)
print ">>> jamfile: %s"%(self.jamfile)
print(">>> cwd: %s"%(os.getcwd()))
print(">>> actions: %s"%(self.actions))
print(">>> boost_root: %s"%(self.boost_root))
print(">>> library: %s"%(self.library))
print(">>> jamfile: %s"%(self.jamfile))
for action in self.actions:
action_m = "check_"+action.replace('-','_')