Grissiom 81b284b316 scons: no need to set RTT_ROOT as Repository
In SCons manual:

=================
In order to inform the C compiler about the repositories,  SCons will
add appropriate -I flags to the compilation commands for each directory
in the $CPPPATH list. So if we add the current directory to the
construction environment $CPPPATH like so:

    env = Environment(CPPPATH = ['.'])
    env.Program('hello.c')
    Repository('/usr/repository1')

Then re-executing SCons yields:

    % scons -Q
    cc -o hello.o -c -I. -I/usr/repository1 hello.c
    cc -o hello hello.o
=================

The additional include directory is definitely not what we want. Just
remove the additional Repository line.
2014-04-10 15:09:20 +08:00
..
2013-09-07 18:31:05 +08:00
2013-02-02 17:36:34 +08:00
2012-01-08 03:14:19 +00:00
2013-01-08 05:05:02 -08:00
2014-03-25 10:04:48 +08:00
2012-02-19 09:11:35 +00:00
2013-01-08 05:05:02 -08:00