From 595d1f41453b646e91b4002d3f01de0ba2bc1edd Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Wed, 17 Jul 2024 15:23:51 -0600 Subject: [PATCH] fix print --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index b798c425..8616ec1d 100644 --- a/SConstruct +++ b/SConstruct @@ -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