587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
22 lines
1 KiB
Diff
22 lines
1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Nick Cao <nickcao@nichi.co>
|
|
Date: Tue, 10 Oct 2023 10:14:40 -0400
|
|
Subject: [PATCH] qtbase: allow translations outside prefix
|
|
|
|
---
|
|
cmake/QtBuildPathsHelpers.cmake | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/cmake/QtBuildPathsHelpers.cmake b/cmake/QtBuildPathsHelpers.cmake
|
|
index 18082ac6a5f..e16aea7d7c6 100644
|
|
--- a/cmake/QtBuildPathsHelpers.cmake
|
|
+++ b/cmake/QtBuildPathsHelpers.cmake
|
|
@@ -134,7 +134,7 @@ function(qt_configure_process_path name default docstring)
|
|
set(rel_path ".")
|
|
elseif(rel_path MATCHES "^\.\./")
|
|
# INSTALL_SYSCONFDIR is allowed to be outside the prefix.
|
|
- if(NOT name STREQUAL "INSTALL_SYSCONFDIR")
|
|
+ if(NOT (name STREQUAL "INSTALL_SYSCONFDIR" OR name STREQUAL "INSTALL_TRANSLATIONSDIR"))
|
|
message(FATAL_ERROR
|
|
"Path component '${name}' is outside computed install prefix: ${rel_path} ")
|
|
return()
|