We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a7691 commit e2257a5Copy full SHA for e2257a5
build.py
@@ -599,7 +599,10 @@ def process_kwargs(self, kwargs):
599
final_cmd.append(c.get_command())
600
elif isinstance(c, BuildTarget) or isinstance(c, CustomTarget):
601
self.dependencies.append(c)
602
- final_cmd.append(os.path.join(c.get_subdir(), c.get_filename()))
+ # GIR scanner will attempt to execute this binary but
603
+ # it assumes that it is in path, so always give it a full path.
604
+ totarget = os.path.join('.', c.get_subdir(), c.get_filename())
605
+ final_cmd.append(totarget)
606
elif isinstance(c, list):
607
# Hackety hack, only supports one level of flattening. Should really
608
# work to arbtrary depth.
0 commit comments