diff --git a/builder/actions/install.py b/builder/actions/install.py index 59f88a4d5..22132bd0d 100644 --- a/builder/actions/install.py +++ b/builder/actions/install.py @@ -134,7 +134,6 @@ def run(self, env): imports = env.project.get_imports(env.spec) for imp in imports: if imp.compiler: - print("install imports : {}".format(imp)) imp.install(env) export_compiler(env.spec.compiler, env) diff --git a/builder/core/project.py b/builder/core/project.py index 3eede6122..6ada36139 100644 --- a/builder/core/project.py +++ b/builder/core/project.py @@ -596,6 +596,7 @@ def install(self, env): """ Can be overridden to install a project from anywhere """ imports = self.get_imports(env.spec) for imp in imports: + print("install imports : {}".format(imp)) imp.install(env) def cmake_args(self, env):