Skip to content
Snippets Groups Projects
Commit 5426c3ac authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QmlJSDumper: improve d1041cc9

We have to use --notrelocatable in all cases
parent c6e8b237
No related branches found
No related tags found
No related merge requests found
......@@ -275,8 +275,8 @@ void PluginDumper::dump(const Plugin &plugin)
connect(process, SIGNAL(finished(int)), SLOT(qmlPluginTypeDumpDone(int)));
connect(process, SIGNAL(error(QProcess::ProcessError)), SLOT(qmlPluginTypeDumpError(QProcess::ProcessError)));
QStringList args;
args << QLatin1String("--notrelocatable");
if (plugin.importUri.isEmpty()) {
args << "--notrelocatable ";
args << QLatin1String("--path");
args << plugin.importPath;
if (ComponentVersion(plugin.importVersion).isValid())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment