From 37631e5640d8f7c31182fa72b31266bbdf6939fc Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 20 Jan 2019 14:36:46 +0000 Subject: [PATCH] LogNormal() for removing rpaths, it's not something that needs to be warned about --- tools/linuxdeployqt/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/linuxdeployqt/shared.cpp b/tools/linuxdeployqt/shared.cpp index 176efc19..1f120a55 100644 --- a/tools/linuxdeployqt/shared.cpp +++ b/tools/linuxdeployqt/shared.cpp @@ -855,7 +855,7 @@ void changeIdentification(const QString &id, const QString &binaryPath) // remove any non-relative path that would point outside the package if (!path.startsWith("$ORIGIN")) { - LogWarning() << "Removing absolute rpath of " << path << " in " << binaryPath; + LogNormal() << "Removing absolute rpath of " << path << " in " << binaryPath; rpath.removeAll(path); } }