Minor cleanup

This commit is contained in:
probonopd
2016-09-06 19:33:31 +02:00
parent 176b93682c
commit 0ee3d62825
+1 -6
View File
@@ -518,16 +518,11 @@ void runPatchelf(QStringList options)
void changeIdentification(const QString &id, const QString &binaryPath) void changeIdentification(const QString &id, const QString &binaryPath)
{ {
LogDebug() << "Using patchelf:"; LogDebug() << "Using patchelf:";
LogDebug() << " change identification in" << binaryPath; LogDebug() << " change rpath in" << binaryPath;
LogDebug() << " to" << id; LogDebug() << " to" << id;
runPatchelf(QStringList() << "--set-rpath" << id << binaryPath); runPatchelf(QStringList() << "--set-rpath" << id << binaryPath);
} }
void addRPath(const QString &rpath, const QString &binaryPath)
{
runPatchelf(QStringList() << "-add_rpath" << rpath << binaryPath);
}
void runStrip(const QString &binaryPath) void runStrip(const QString &binaryPath)
{ {
if (runStripEnabled == false) if (runStripEnabled == false)