From ac08552d14091ea8633f5bae86d72d5ef964e32e Mon Sep 17 00:00:00 2001 From: OBATA Akio Date: Sat, 25 Jul 2020 18:37:27 +0900 Subject: [PATCH] Fix to record {MAJOR}.{MINOR} to `library_names` in libtool file Signed-off-by: OBATA Akio --- qmake/generators/unix/unixmake2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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";