Update shared.cpp

This commit is contained in:
probonopd
2019-01-13 15:19:26 +00:00
committed by GitHub
parent 4123a34a39
commit 56a8027535
+3 -1
View File
@@ -49,6 +49,7 @@
QString appBinaryPath; QString appBinaryPath;
bool runStripEnabled = true; bool runStripEnabled = true;
bool bundleAllButCoreLibs = false; bool bundleAllButCoreLibs = false;
bool bundleEverything = false;
bool fhsLikeMode = false; bool fhsLikeMode = false;
QString fhsPrefix; QString fhsPrefix;
bool alwaysOwerwriteEnabled = false; bool alwaysOwerwriteEnabled = false;
@@ -429,7 +430,7 @@ LibraryInfo parseLddLibraryLine(const QString &line, const QString &appDirPath,
if (trimmed.isEmpty()) if (trimmed.isEmpty())
return info; return info;
if(!bundleEverything) {
if(bundleAllButCoreLibs) { if(bundleAllButCoreLibs) {
/* /*
Bundle every lib including the low-level ones except those that are explicitly blacklisted. 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}; enum State {QtPath, LibraryName, Version, End};
State state = QtPath; State state = QtPath;