Closed GoogleCodeExporter closed 9 years ago
I had same error but it was solved by lower version of scons.
Try it again with scons-2.0.1
Original comment by domengdo...@gmail.com
on 20 Oct 2011 at 9:16
Thanks. It's fixed with scons-2.0.1 as you've suggested.
Original comment by mst...@gmail.com
on 20 Oct 2011 at 4:29
Original comment by jun...@google.com
on 21 Oct 2011 at 8:44
thank you very much, for me too the error is fixed by using scons-local-2.0.1
and it is successfully build
Original comment by withjoe...@gmail.com
on 28 Nov 2011 at 12:27
I found a solution for this problem, without to need to rollback to an earlier
version of SCons.
You need to modify to lines in the site_init.py file.
Line 330:
SCons.Script.Main._load_site_scons_dir(
str(SCons.Node.FS.get_default_fs().SConstruct_dir), site_dir)
Line 450:
SCons.Script.Main._load_site_scons_dir(
str(SCons.Node.FS.get_default_fs().SConstruct_dir), None)
Check this:
http://stackoverflow.com/questions/5238953/problem-compiling-libjingle
Original comment by gergelym...@gmail.com
on 27 Jan 2012 at 6:48
This defect still exists. I just had to do the same thing to fix it with the
latest version of libjingle. (although the lines were different). Asking people
to downgrade to an older version of scons is not a fix.
Original comment by bj...@xowave.com
on 7 Sep 2012 at 9:45
[deleted comment]
line 451 in site_init.py
SCons.Script.Main._load_site_scons_dir(
SCons.Node.FS.get_default_fs().SConstruct_dir, None)
->
SCons.Script.Main._load_site_scons_dir(
SCons.Node.FS.get_default_fs().SConstruct_dir.path, None)
Original comment by truth...@gmail.com
on 8 Sep 2012 at 1:59
Original issue reported on code.google.com by
mst...@gmail.com
on 19 Oct 2011 at 11:29