diff options
author | OBATA Akio <[email protected]> | 2020-08-02 16:42:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-08-09 21:18:35 +0900 |
commit | 3b9daf47f5d90aea358a14639c2913e7b5a77245 (patch) | |
tree | 290833f20a890c926e9bd650845aa4a72ef42f6d /qmake/generators/unix/unixmake.cpp | |
parent | 578712826b2a161f3f354d7cfe0a066d0014f5dd (diff) | |
download | tqt3-3b9daf47f5d90aea358a14639c2913e7b5a77245.tar.gz tqt3-3b9daf47f5d90aea358a14639c2913e7b5a77245.zip |
Prevent to set build directories as RPATH
It result in unwanted RPATH reference from installed binaries.
Signed-off-by: OBATA Akio <[email protected]>
(cherry picked from commit a9d2c0bdd16dd850fcfe58c040c89c8a6a2268a3)
Diffstat (limited to 'qmake/generators/unix/unixmake.cpp')
-rw-r--r-- | qmake/generators/unix/unixmake.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/qmake/generators/unix/unixmake.cpp b/qmake/generators/unix/unixmake.cpp index d21beba55..3c0cd97ce 100644 --- a/qmake/generators/unix/unixmake.cpp +++ b/qmake/generators/unix/unixmake.cpp @@ -352,11 +352,9 @@ UnixMakefileGenerator::init() comp_flags += " -version-info " + TQString::number(10*maj + min) + ":" + TQString::number(pat) + ":0"; if(libtoolify[i] != "QMAKE_AR_CMD") { - TQString rpath = Option::output_dir; - if(!project->isEmpty("DESTDIR")) { - rpath = project->first("DESTDIR"); - if(TQDir::isRelativePath(rpath)) - rpath.prepend(Option::output_dir + Option::dir_sep); + TQString rpath = project->first("target.path"); + if(rpath.right(1) != Option::dir_sep) { + rpath += Option::dir_sep; } comp_flags += " -rpath " + Option::fixPathToTargetOS(rpath, FALSE); } |