diff options
author | OBATA Akio <[email protected]> | 2020-07-25 18:37:27 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-08-02 17:59:52 +0900 |
commit | e1cdcbaf453207ef785ee2f291dead42a694e587 (patch) | |
tree | 1be15ff0c243d09960ff3cf15ed1864629d70818 /qmake/generators/unix/unixmake2.cpp | |
parent | 4140dfe51e5ee099dc89c08b883296174407bf83 (diff) | |
download | tqt3-e1cdcbaf453207ef785ee2f291dead42a694e587.tar.gz tqt3-e1cdcbaf453207ef785ee2f291dead42a694e587.zip |
Fix to record {MAJOR}.{MINOR} to `library_names` in libtool file
Signed-off-by: OBATA Akio <[email protected]>
(cherry picked from commit 5449d37d879866e4193dded434382a71b33e0be2)
Diffstat (limited to 'qmake/generators/unix/unixmake2.cpp')
-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 dd96aba75..772fe8f72 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"; |