Browse Source

Use -g option for appimagetool

master
probonopd 8 years ago
parent
commit
5b4339a0f6
  1. 2
      tools/linuxdeployqt/shared.cpp

2
tools/linuxdeployqt/shared.cpp

@ -1567,7 +1567,7 @@ bool checkAppImagePrerequisites(const QString &appDirPath)
int createAppImage(const QString &appDirPath) int createAppImage(const QString &appDirPath)
{ {
QString appImageCommand = "appimagetool '" + appDirPath + "' --verbose -n"; // +"' '" + appImagePath + "'"; QString appImageCommand = "appimagetool '" + appDirPath + "' --verbose -n -g"; // +"' '" + appImagePath + "'";
int ret = system(appImageCommand.toUtf8().constData()); int ret = system(appImageCommand.toUtf8().constData());
LogNormal() << "ret" << ret; LogNormal() << "ret" << ret;
LogNormal() << "WEXITSTATUS(ret)" << WEXITSTATUS(ret); LogNormal() << "WEXITSTATUS(ret)" << WEXITSTATUS(ret);

Loading…
Cancel
Save