From 2994bcb4997580aaab44118cf52d76dc19b9f64b Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sun, 22 Sep 2024 10:24:42 +0100 Subject: [PATCH] fixup --- depends/patches/qt/dont_hardcode_pwd.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/depends/patches/qt/dont_hardcode_pwd.patch b/depends/patches/qt/dont_hardcode_pwd.patch index ececfd4506cd7..217b6bec15b27 100644 --- a/depends/patches/qt/dont_hardcode_pwd.patch +++ b/depends/patches/qt/dont_hardcode_pwd.patch @@ -26,6 +26,18 @@ index 08b49a8d..faea5b55 100755 # do this early so we don't store it in config.status +--- a/qtbase/bin/qt-cmake.in ++++ b/qtbase/bin/qt-cmake.in +@@ -2,7 +2,7 @@ + + # The directory of this script is the expanded absolute path of the "$qt_prefix/bin" directory. + script_dir_path=`dirname $0` +-script_dir_path=`(cd "$script_dir_path"; /bin/pwd)` ++script_dir_path=`(cd "$script_dir_path"; pwd)` + + # Try to use original cmake, otherwise to make it relocatable, use any cmake found in PATH. + original_cmake_path="@CMAKE_COMMAND@" + --- a/qtbase/bin/qt-configure-module.in +++ b/qtbase/bin/qt-configure-module.in @@ -2,7 +2,7 @@