renamed pc to SDL for clarity

This commit is contained in:
punkrockguy318 2006-07-31 17:42:18 +00:00
parent bd5f91edcf
commit 9c6cbb0563
27 changed files with 8 additions and 3 deletions

7
BUGS
View File

@ -1,7 +1,12 @@
BUILD SYSTEM BUGS:
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
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.
- July 31, 2006 - Luke - checked out to latest revision, all is well.

View File

@ -36,7 +36,7 @@ input/SConscript
fir/SConscript
mappers/SConscript
drivers/common/SConscript
drivers/pc/SConscript
drivers/sdl/SConscript
"""))
#palettes/SConscript
Import('file_list')

View File

@ -16,6 +16,6 @@ unix-netplay.cpp
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
Export('file_list')