From 1ce71a6a113df553c5517b4b2e8af05bc32ba705 Mon Sep 17 00:00:00 2001 From: BogDan Vatra Date: Thu, 24 Oct 2019 13:18:37 +0300 Subject: Fix bundled_libs section from libs.xml Fixes: QTBUG-79376 Change-Id: If7681365110341379913ae46a96a2f2296197b8f Reviewed-by: Eskil Abrahamsen Blomfeldt --- src/tools/androiddeployqt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/androiddeployqt/main.cpp b/src/tools/androiddeployqt/main.cpp index 7101a2bf3c..feecfba8fb 100644 --- a/src/tools/androiddeployqt/main.cpp +++ b/src/tools/androiddeployqt/main.cpp @@ -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(" %1;%2").arg(it.key(), name); + extraLibs += QLatin1String(" %1;%2\n").arg(it.key(), name); } } -- cgit v1.2.3