forked from cory/tildefriends
Fixes windows.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3348 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
parent
e493a3d34b
commit
b27fd90656
@ -55,7 +55,10 @@ else:
|
|||||||
os.path.join(uv, 'out/Debug/obj.target'),
|
os.path.join(uv, 'out/Debug/obj.target'),
|
||||||
])
|
])
|
||||||
|
|
||||||
env.Command('icudtl.dat', os.path.join(v8, 'out/native/icudtl.dat'), Copy("$TARGET", "$SOURCE"))
|
if sys.platform == 'win32':
|
||||||
|
env.Command('icudtl.dat', os.path.join(v8, 'build/Release/icudtl.dat'), Copy("$TARGET", "$SOURCE"))
|
||||||
|
else:
|
||||||
|
env.Command('icudtl.dat', os.path.join(v8, 'out/native/icudtl.dat'), Copy("$TARGET", "$SOURCE"))
|
||||||
|
|
||||||
ldapEnv = env.Clone()
|
ldapEnv = env.Clone()
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
|
Loading…
Reference in New Issue
Block a user