Skip to content

Commit 95c8919

Browse files
committed
Follow-up to r1931402, fix a warning while running gen-make.py on Windows.
* build/generator/gen_base.py (IncludeDependencyInfo._scan_for_includes): Convert the path to a native path before comparing it with include_param. git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1932744 13f79535-47bb-0310-9956-ffa450edef68
1 parent 48c69bb commit 95c8919

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/generator/gen_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1289,7 +1289,7 @@ def _scan_for_includes(self, fname):
12891289
and 'config_keys.inc' == include_param:
12901290
continue # generated by GeneratorBase.write_config_keys
12911291
if os.sep.join(['tests', 'libsvn_subr', 'adler32-test.c']) in fname \
1292-
and '../../libsvn_subr/adler32.c' == include_param:
1292+
and native_path('../../libsvn_subr/adler32.c') == include_param:
12931293
continue # adler32-test.c inludes the source file on purpose
12941294
elif direct_possibility_fname in domain_fnames:
12951295
self._upd_dep_hash(hdrs, direct_possibility_fname, type_code)

0 commit comments

Comments
 (0)