debug linux copying libs
This commit is contained in:
@@ -446,11 +446,13 @@ def handle_bundled_libs(extension):
|
||||
for lpath in env['LIBPATH']:
|
||||
src_file = path.join(lpath, lib + extension)
|
||||
if path.exists(src_file):
|
||||
print(src_file)
|
||||
for targ in target_dirs:
|
||||
env.Install(targ, src_file)
|
||||
break
|
||||
elif 'lib' in lpath:
|
||||
src_file = path.join(lpath.replace('lib', 'bin'), lib + extension)
|
||||
print(src_file)
|
||||
if path.exists(src_file):
|
||||
for targ in target_dirs:
|
||||
env.Install(targ, src_file)
|
||||
|
Reference in New Issue
Block a user