Prevent recompilation of libdev

This commit is contained in:
Amit Mahajan
2009-11-12 11:27:21 +05:30
parent 3f1045d66e
commit 9bd5bd889f
5 changed files with 9 additions and 7 deletions

View File

@@ -34,10 +34,11 @@ libl4 = SConscript('conts/libl4/SConscript', \
e = env.Clone()
e.Replace(CPPFLAGS = '')
type = 'userspace'
libdev = SConscript('conts/libdev/SConscript', \
exports = { 'env' : e, 'arch' : arch, 'platform' : platform, 'type' : 'userspace' }, \
duplicate = 0, variant_dir = \
join(BUILDDIR, os.path.relpath('conts/libdev', PROJROOT)))
join(join(BUILDDIR, os.path.relpath('conts/libdev', PROJROOT)), 'sys-' + type))
libc = SConscript('conts/libc/SConscript', \
exports = { 'env' : env, 'arch' : arch, 'platform' : platform, 'type' : 'userspace' }, \