Merge pull request #86 from uwehermann/compiler_warnings

Fix two compiler warnings.
This commit is contained in:
probonopd
2017-03-02 08:00:47 +01:00
committed by GitHub
+4
View File
@@ -219,6 +219,8 @@ int containsHowOften(QStringList haystack, QString needle) {
LibraryInfo parseLddLibraryLine(const QString &line, const QString &appDirPath, const QSet<QString> &rpaths)
{
(void)rpaths;
if(fhsLikeMode == false){
bundleLibraryDirectory= "lib"; // relative to bundle
} else {
@@ -680,6 +682,8 @@ void runStrip(const QString &binaryPath)
void stripAppBinary(const QString &bundlePath)
{
(void)bundlePath;
runStrip(appBinaryPath);
}