Browse Source

Update shared.cpp

master
probonopd 6 years ago
committed by GitHub
parent
commit
56a8027535
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      tools/linuxdeployqt/shared.cpp

4
tools/linuxdeployqt/shared.cpp

@ -49,6 +49,7 @@
QString appBinaryPath;
bool runStripEnabled = true;
bool bundleAllButCoreLibs = false;
bool bundleEverything = false;
bool fhsLikeMode = false;
QString fhsPrefix;
bool alwaysOwerwriteEnabled = false;
@ -429,7 +430,7 @@ LibraryInfo parseLddLibraryLine(const QString &line, const QString &appDirPath,
if (trimmed.isEmpty())
return info;
if(!bundleEverything) {
if(bundleAllButCoreLibs) {
/*
Bundle every lib including the low-level ones except those that are explicitly blacklisted.
@ -467,6 +468,7 @@ LibraryInfo parseLddLibraryLine(const QString &line, const QString &appDirPath,
}
}
}
}
enum State {QtPath, LibraryName, Version, End};
State state = QtPath;

Loading…
Cancel
Save