Skip to content

Commit

Permalink
Fix bundled_libs section from libs.xml
Browse files Browse the repository at this point in the history
Fixes: QTBUG-79376
Change-Id: If7681365110341379913ae46a96a2f2296197b8f
Reviewed-by: Eskil Abrahamsen Blomfeldt <[email protected]>
  • Loading branch information
bog-dan-ro committed Oct 25, 2019
1 parent c8aadc7 commit 1ce71a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/androiddeployqt/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ bool updateLibsXml(Options *options)
QFileInfo extraLibInfo(extraLib);
QString name = extraLibInfo.fileName().mid(sizeof("lib") - 1);
name.chop(sizeof(".so") - 1);
extraLibs += QLatin1String(" <item>%1;%2").arg(it.key(), name);
extraLibs += QLatin1String(" <item>%1;%2</item>\n").arg(it.key(), name);
}
}

Expand Down

0 comments on commit 1ce71a6

Please sign in to comment.