nouveau: Fix typos of ParseSourceList in SConscript files.

Reviewed-by: Chia-I Wu <olv@lunarg.com>
This commit is contained in:
Vinson Lee 2011-09-12 09:21:31 -07:00
parent 88625e6e65
commit 79b162ba45
4 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ env = env.Clone()
nouveau = env.ConvenienceLibrary(
target = 'nouveau',
source = env.ParserSourceList('Makefile.sources', 'C_SOURCES')
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
)
Export('nouveau')

View file

@ -4,7 +4,7 @@ env = env.Clone()
nv50 = env.ConvenienceLibrary(
target = 'nv50',
source = env.ParserSourceList('Makefile.sources', 'C_SOURCES')
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
)
Export('nv50')

View file

@ -4,7 +4,7 @@ env = env.Clone()
nvc0 = env.ConvenienceLibrary(
target = 'nvc0',
source = env.ParserSourceList('Makefile.sources', 'C_SOURCES')
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
)
Export('nvc0')

View file

@ -8,7 +8,7 @@ env.PrependUnique(delete_existing=1, CPPPATH = [
nvfx = env.ConvenienceLibrary(
target = 'nvfx',
source = env.ParserSourceList('Makefile.sources', 'C_SOURCES')
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
)
Export('nvfx')