Skip to content

Commit 20d4755

Browse files
committed
Merge pull request #99629 from AThousandShips/fix_scu_win
[Buildsystem] Fix path format for SCU builds on Windows
2 parents 5b11eb6 + 1c522c9 commit 20d4755

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

methods.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ def add_source_files_scu(self, sources, files, allow_gen=False):
102102
subdir = os.path.dirname(files)
103103
subdir = subdir if subdir == "" else subdir + "/"
104104
section_name = self.Dir(subdir).tpath
105+
section_name = section_name.replace("\\", "/") # win32
105106
# if the section name is in the hash table?
106107
# i.e. is it part of the SCU build?
107108
global _scu_folders

0 commit comments

Comments
 (0)