Browse Source

Merge pull request #86 from uwehermann/compiler_warnings

Fix two compiler warnings.
master
probonopd 8 years ago
committed by GitHub
parent
commit
b3072213a3
  1. 4
      shared/shared.cpp

4
shared/shared.cpp

@ -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);
}

Loading…
Cancel
Save