renamed pc to SDL for clarity
This commit is contained in:
parent
bd5f91edcf
commit
9c6cbb0563
7
BUGS
7
BUGS
|
@ -1,7 +1,12 @@
|
||||||
BUILD SYSTEM BUGS:
|
BUILD SYSTEM BUGS:
|
||||||
Date - Person - Details
|
Date - Person - Details
|
||||||
|
|
||||||
July 30, 2006 - Luke - I'm getting build errors about:
|
|
||||||
|
|
||||||
|
|
||||||
|
CLOSED * July 30, 2006 - Luke - I'm getting build errors about:
|
||||||
sh: illegal option -l
|
sh: illegal option -l
|
||||||
Started happening when the build system was edited to be more robust.
|
Started happening when the build system was edited to be more robust.
|
||||||
I'll check it out when i get the chance, or soules if you could take a look at it, that would be grand.
|
I'll check it out when i get the chance, or soules if you could take a look at it, that would be grand.
|
||||||
|
- July 31, 2006 - Luke - checked out to latest revision, all is well.
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ input/SConscript
|
||||||
fir/SConscript
|
fir/SConscript
|
||||||
mappers/SConscript
|
mappers/SConscript
|
||||||
drivers/common/SConscript
|
drivers/common/SConscript
|
||||||
drivers/pc/SConscript
|
drivers/sdl/SConscript
|
||||||
"""))
|
"""))
|
||||||
#palettes/SConscript
|
#palettes/SConscript
|
||||||
Import('file_list')
|
Import('file_list')
|
||||||
|
|
|
@ -16,6 +16,6 @@ unix-netplay.cpp
|
||||||
|
|
||||||
|
|
||||||
for x in range(len(my_list)):
|
for x in range(len(my_list)):
|
||||||
my_list[x] = 'drivers/pc/' + my_list[x]
|
my_list[x] = 'drivers/sdl/' + my_list[x]
|
||||||
file_list = my_list + file_list
|
file_list = my_list + file_list
|
||||||
Export('file_list')
|
Export('file_list')
|
Loading…
Reference in New Issue