diff options
author | Joerg Bornemann <[email protected]> | 2024-08-16 09:54:59 +0200 |
---|---|---|
committer | Joerg Bornemann <[email protected]> | 2024-08-16 12:36:35 +0200 |
commit | 12b0f73a9e9cef35395d0a1560a51604c1c054ff (patch) | |
tree | a488b0a599f01bd658a0b61532e8798a56417071 | |
parent | 928ddf32af926ffa47884453d6d5e5a4cb4b82b2 (diff) |
CMake: Don't hard-code "libexec" in qt-configure-module
If INSTALL_LIBEXECDIR was set to something != "libexec",
qt-configure-module contained the wrong path to qt-cmake.
Fixes: QTBUG-128137
Pick-to: 6.5 6.7 6.8
Change-Id: Ic095ff8cb804bbdd72e238e75ac867b7cc3bd478
Reviewed-by: Alexey Edelev <[email protected]>
-rwxr-xr-x | bin/qt-configure-module.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/qt-configure-module.in b/bin/qt-configure-module.in index 06219436188..690fc014782 100755 --- a/bin/qt-configure-module.in +++ b/bin/qt-configure-module.in @@ -69,7 +69,7 @@ opttmpfilepath=${outpathPrefix}/config.opt.in redofilepath=${outpathPrefix}/config.redo.last redotmpfilepath=${outpathPrefix}/config.redo.in -qt_cmake_private_path="$script_dir_path/../libexec" +qt_cmake_private_path="$script_dir_path/../@INSTALL_LIBEXECDIR@" fresh_requested_arg= if [ -z "$optfile" ]; then # only write optfile if not currently redoing |