summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xutil/cmake/pro2cmake.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index a6ebc1094c..820a95d728 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -1571,7 +1571,8 @@ def main() -> None:
for file in args.files:
new_current_dir = os.path.dirname(file)
file_relative_path = os.path.basename(file)
- os.chdir(new_current_dir)
+ if new_current_dir:
+ os.chdir(new_current_dir)
parseresult = parseProFile(file_relative_path, debug=debug_parsing)