mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-18 13:14:37 +03:00
Change no patching condition
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
@@ -204,7 +204,7 @@ class Cli:
|
|||||||
archives.append(modules)
|
archives.append(modules)
|
||||||
else:
|
else:
|
||||||
archives = modules
|
archives = modules
|
||||||
nopatch = (archives is None or 'qtbase' not in archives) # type: bool
|
nopatch = args.noarchives or (archives is not None and 'qtbase' not in archives) # type: bool
|
||||||
self._run_common_part(output_dir, base)
|
self._run_common_part(output_dir, base)
|
||||||
if not self._check_qt_arg_versions(qt_version):
|
if not self._check_qt_arg_versions(qt_version):
|
||||||
self.logger.warning("Specified Qt version is unknown: {}.".format(qt_version))
|
self.logger.warning("Specified Qt version is unknown: {}.".format(qt_version))
|
||||||
|
|||||||
Reference in New Issue
Block a user