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;
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;