diff options
author | OBATA Akio <obache@wizdas.com> | 2020-07-25 18:37:27 +0900 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-02-02 01:44:38 +0100 |
commit | 88ce8583740fcd3a2146acb16bde7218eca87a17 (patch) | |
tree | 57555acf182b4bf821a46da106c45e5a93ecd248 | |
parent | 7d655cde260689cc4476239a11d7961880f1a4aa (diff) | |
download | qt3-88ce8583740fcd3a2146acb16bde7218eca87a17.tar.gz qt3-88ce8583740fcd3a2146acb16bde7218eca87a17.zip |
Fix to record {MAJOR}.{MINOR} to `library_names` in libtool file
Signed-off-by: OBATA Akio <obache@wizdas.com>
(cherry picked from commit ac08552d14091ea8633f5bae86d72d5ef964e32e)
-rw-r--r-- | qmake/generators/unix/unixmake2.cpp | 2 |
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"; |