aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2018-05-07 09:12:39 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2018-05-07 08:05:07 +0000
commitd5f650771cda6587f140dd15b6768188fb3ea347 (patch)
tree49bda225b9f38ae33db9bb011a671563e7236675
parente124f12e95cbf44bc5fc391846ddeedf2c042680 (diff)
Fix CMake usage of utils.py
The file was moved, but the path was not adjusted. Change-Id: I80ea28e4238f9cf9d43db2f9e669d84d5eafaea6 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
-rw-r--r--sources/shiboken2/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken2/CMakeLists.txt b/sources/shiboken2/CMakeLists.txt
index b65e32974..d499ffc22 100644
--- a/sources/shiboken2/CMakeLists.txt
+++ b/sources/shiboken2/CMakeLists.txt
@@ -43,7 +43,7 @@ macro(get_llvm_config)
import os
import sys
sys.path.append(os.path.realpath(os.path.join('${CMAKE_CURRENT_LIST_DIR}', '..', '..')))
- from utils import findLlvmConfig
+ from build_scripts.utils import findLlvmConfig
llvmConfig = findLlvmConfig()
if llvmConfig:
print(llvmConfig)