mirror of
https://github.com/mesonbuild/meson.git
synced 2026-08-09 09:12:24 +00:00
Commit1217faedc("build: never pass str to Generator.process_files", 2026-06-15) replaced Generator.process_files's own input normalization with _qt.py's _source_to_files(). The two functions do different things for GeneratedList inputs, with _source_to_files() *not* adding a dependency from the input generator to the new one and also not wrapping the output into FileInTargetPrivateDir. So, after the commit a GeneratedList passed to moc never depends on the input GeneratedList, and also has the wrong path. The remaining _source_to_files uses are for .qrc and qmldir generation, and they existed even before commit1217faedc. Fixes: #16060