Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
use verbose configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ericLemanissier committed Apr 25, 2020
1 parent 82af606 commit d10c7e3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ def _xplatform(self):
def build(self):
args = ["-confirm-license", "-silent", "-nomake examples", "-nomake tests",
"-prefix %s" % self.package_folder]
args.append("-v")
if self.options.commercial:
args.append("-commercial")
else:
Expand Down Expand Up @@ -652,10 +653,7 @@ def _gather_pc_files(package):
build_env['CPLUS_INCLUDE_PATH'] = os.pathsep.join(i_path)
build_env['LIBRARY_PATH'] = os.pathsep.join(l_path)
with tools.environment_append(build_env):
try:
self.run("%s/qt5/configure %s" % (self.source_folder, " ".join(args)), run_environment=True)
finally:
self.output.info(open('config.log', errors='backslashreplace').read())
self.run("%s/qt5/configure %s" % (self.source_folder, " ".join(args)), run_environment=True)

if self.settings.compiler == "Visual Studio":
make = "jom"
Expand Down

0 comments on commit d10c7e3

Please sign in to comment.