From 0ee3d6282518fe327b52685fa8b724c7b0d4dadb Mon Sep 17 00:00:00 2001 From: probonopd Date: Tue, 6 Sep 2016 19:33:31 +0200 Subject: [PATCH] Minor cleanup --- shared/shared.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 1d340e8..870e08c 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -518,16 +518,11 @@ void runPatchelf(QStringList options) void changeIdentification(const QString &id, const QString &binaryPath) { LogDebug() << "Using patchelf:"; - LogDebug() << " change identification in" << binaryPath; + LogDebug() << " change rpath in" << binaryPath; LogDebug() << " to" << id; 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) { if (runStripEnabled == false)