summaryrefslogtreecommitdiffstats
path: root/qmake/generators/unix/unixmake2.cpp
diff options
context:
space:
mode:
authorOBATA Akio <obache@wizdas.com>2020-07-25 18:37:27 +0900
committerSlávek Banko <slavek.banko@axis.cz>2021-02-02 01:44:22 +0100
commitac08552d14091ea8633f5bae86d72d5ef964e32e (patch)
treee854819366f0161562ccfd83261f913cb8ba4ad4 /qmake/generators/unix/unixmake2.cpp
parent4596513c452688719d01cb2f5f7e1b81140f9f93 (diff)
downloadqt3-ac08552d14091ea8633f5bae86d72d5ef964e32e.tar.gz
qt3-ac08552d14091ea8633f5bae86d72d5ef964e32e.zip
Fix to record {MAJOR}.{MINOR} to `library_names` in libtool file
Signed-off-by: OBATA Akio <obache@wizdas.com>
Diffstat (limited to 'qmake/generators/unix/unixmake2.cpp')
-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 734b009..96e1f0d 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";