Quoting Emil Velikov (2018-03-20 09:29:00)
[snip]
> gens = []
> for xml_file in args.xml_files:
> @@ -617,7 +610,7 @@ def main():
>
> """))
>
> - c("#include \"" + os.path.basename(args.header) + "\"")
> + c("#include \"" + os.path.basename(header_file) + "\"")
You're calling os.path.basename on a file object, which isn't valid. This should
still be args.header.
>
> c(textwrap.dedent("""\
> #include "brw_context.h"
> --
> 2.16.0
>
> _______________________________________________
> mesa-dev mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
signature.asc
Description: signature
_______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
