[DeviceDriver] Fix inverted logic on SConscript
Remove dataqueue/pipe if not enable RT_USING_HEAP, supply the missing `not`.
This commit is contained in:
parent
2bc4386c30
commit
16bf2e7255
|
@ -4,7 +4,7 @@ cwd = GetCurrentDir()
|
||||||
src = Glob('*.c')
|
src = Glob('*.c')
|
||||||
CPPPATH = [cwd + '/../include']
|
CPPPATH = [cwd + '/../include']
|
||||||
|
|
||||||
if GetDepend('RT_USING_HEAP'):
|
if not GetDepend('RT_USING_HEAP'):
|
||||||
SrcRemove(src, 'dataqueue.c')
|
SrcRemove(src, 'dataqueue.c')
|
||||||
SrcRemove(src, 'pipe.c')
|
SrcRemove(src, 'pipe.c')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue