fix print

This commit is contained in:
2024-07-17 15:23:51 -06:00
parent e4fe82f68f
commit 595d1f4145

View File

@@ -452,8 +452,8 @@ def handle_bundled_libs(extension):
break
elif 'lib' in lpath:
src_file = path.join(lpath.replace('lib', 'bin'), lib + extension)
print(src_file)
if path.exists(src_file):
print(src_file)
for targ in target_dirs:
env.Install(targ, src_file)
break