Re: [Mesa-dev] [PATCH] scons: Improve Python module dependency discovery.

2016-05-06 Thread Brian Paul
On 05/06/2016 10:04 AM, Jose Fonseca wrote: Several NIR scripts were using `from ... import ...` syntax, which wasn't supported. Using Python standard libary's modulefinder solves the problem with less effort and hacks. --- scons/custom.py | 27 +-- 1 file changed, 9 i

[Mesa-dev] [PATCH] scons: Improve Python module dependency discovery.

2016-05-06 Thread Jose Fonseca
Several NIR scripts were using `from ... import ...` syntax, which wasn't supported. Using Python standard libary's modulefinder solves the problem with less effort and hacks. --- scons/custom.py | 27 +-- 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/scon