diff options
author | OBATA Akio <obache@wizdas.com> | 2020-07-25 18:37:27 +0900 |
---|---|---|
committer | OBATA Akio <obache@wizdas.com> | 2020-07-25 18:37:27 +0900 |
commit | 5449d37d879866e4193dded434382a71b33e0be2 (patch) | |
tree | 10ec86fb606aad22a8d465dd14981e607f0e2e8e | |
parent | 12dcb88d29d09f1f913b88832db5b7fa01088939 (diff) | |
download | tqt3-5449d37d879866e4193dded434382a71b33e0be2.tar.gz tqt3-5449d37d879866e4193dded434382a71b33e0be2.zip |
Fix to record {MAJOR}.{MINOR} to `library_names` in libtool file
Signed-off-by: OBATA Akio <obache@wizdas.com>
-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 b6cf64218..ee024d0e0 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"; |