[tools/building.py]fixed SrcRemove /\ convert issue.
This commit is contained in:
parent
35a0e8e8c9
commit
86ae6146fd
|
@ -803,6 +803,13 @@ def SrcRemove(src, remove):
|
||||||
if not src:
|
if not src:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
src_bak = src
|
||||||
|
|
||||||
|
if type(remove) == type('str'):
|
||||||
|
if os.path.isabs(remove):
|
||||||
|
remove = os.path.relpath(remove, GetCurrentDir())
|
||||||
|
remove = os.path.normpath(remove)
|
||||||
|
|
||||||
for item in src:
|
for item in src:
|
||||||
if type(item) == type('str'):
|
if type(item) == type('str'):
|
||||||
item_str = item
|
item_str = item
|
||||||
|
@ -811,14 +818,30 @@ def SrcRemove(src, remove):
|
||||||
|
|
||||||
if os.path.isabs(item_str):
|
if os.path.isabs(item_str):
|
||||||
item_str = os.path.relpath(item_str, GetCurrentDir())
|
item_str = os.path.relpath(item_str, GetCurrentDir())
|
||||||
|
item_str = os.path.normpath(item_str)
|
||||||
|
|
||||||
if type(remove) == type('str'):
|
|
||||||
if item_str == remove:
|
if item_str == remove:
|
||||||
src.remove(item)
|
src_bak.remove(item)
|
||||||
else:
|
else:
|
||||||
for remove_item in remove:
|
for remove_item in remove:
|
||||||
if item_str == str(remove_item):
|
remove_str = str(remove_item)
|
||||||
src.remove(item)
|
if os.path.isabs(remove_str):
|
||||||
|
remove_str = os.path.relpath(remove_str, GetCurrentDir())
|
||||||
|
remove_str = os.path.normpath(remove_str)
|
||||||
|
|
||||||
|
for item in src:
|
||||||
|
if type(item) == type('str'):
|
||||||
|
item_str = item
|
||||||
|
else:
|
||||||
|
item_str = item.rstr()
|
||||||
|
|
||||||
|
if os.path.isabs(item_str):
|
||||||
|
item_str = os.path.relpath(item_str, GetCurrentDir())
|
||||||
|
item_str = os.path.normpath(item_str)
|
||||||
|
|
||||||
|
if item_str == remove_str:
|
||||||
|
src_bak.remove(item)
|
||||||
|
src = src_bak
|
||||||
|
|
||||||
def GetVersion():
|
def GetVersion():
|
||||||
import SCons.cpp
|
import SCons.cpp
|
||||||
|
|
Loading…
Reference in New Issue