summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2019-01-18 12:44:15 +0100
committerTobias Hunger <tobias.hunger@qt.io>2019-01-23 12:06:22 +0000
commit29ff5f77ee9dbdd5a4aac292fee2599e2ea9cfc1 (patch)
tree1a83c5d07dd6631853b3cd44a1aec3d92ca604a2 /util
parentcc593426eb26b441285b75708cd3374075a31270 (diff)
CMake: pro2cmake.py: Do not double-report include files
Do not add scopes that are going to get merged into their parent scope as a child of the parent scope. This leads to the information of the child scope being duplicated. Change-Id: If4d6a83b9c9eac477959e7774e9cf65fd4df98e6 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/pro2cmake.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index 78c75683a2..9b819e58ec 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -901,9 +901,9 @@ def do_include(scope: Scope, *, debug: bool = False) -> None:
include_result = parseProFile(include_file, debug=debug)
include_scope \
- = Scope.FromDict(scope, include_file,
+ = Scope.FromDict(None, include_file,
include_result.asDict().get('statements'),
- '', dir)
+ '', dir) # This scope will be merged into scope, so no parent_scope!
do_include(include_scope)