From b27fd90656427e0181f5dc79fdb9691fe9cbda57 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 25 Sep 2016 10:53:35 +0000 Subject: [PATCH] Fixes windows. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3348 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- SConstruct | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index edae28e4..b3bcd0c5 100644 --- a/SConstruct +++ b/SConstruct @@ -55,7 +55,10 @@ else: 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() if sys.platform == 'win32':