summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOBATA Akio <obache@wizdas.com>2020-07-25 18:37:27 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-08-02 17:59:52 +0900
commite1cdcbaf453207ef785ee2f291dead42a694e587 (patch)
tree1be15ff0c243d09960ff3cf15ed1864629d70818
parent4140dfe51e5ee099dc89c08b883296174407bf83 (diff)
downloadtqt3-e1cdcbaf453207ef785ee2f291dead42a694e587.tar.gz
tqt3-e1cdcbaf453207ef785ee2f291dead42a694e587.zip
Fix to record {MAJOR}.{MINOR} to `library_names` in libtool file
Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 5449d37d879866e4193dded434382a71b33e0be2)
-rw-r--r--qmake/generators/unix/unixmake2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/unix/unixmake2.cpp b/qmake/generators/unix/unixmake2.cpp
index dd96aba7..772fe8f7 100644
--- a/qmake/generators/unix/unixmake2.cpp
+++ b/qmake/generators/unix/unixmake2.cpp
@@ -1465,7 +1465,7 @@ UnixMakefileGenerator::writeLibtoolFile()
t << var("TARGET");
} else {
if (project->isEmpty("QMAKE_HPUX_SHLIB"))
- t << var("TARGET_x.y.z") << " ";
+ t << var("TARGET_x.y.z") << " " << var("TARGET_x.y") << " ";
t << var("TARGET_x") << " " << var("TARGET_");
}
t << "'\n\n";