summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-18 21:14:16 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-18 21:14:16 +0000
commit9e6e891828f117ebc300ea48dbb43ce3296e152e (patch)
tree236c184a89d571fbf506e6895c0ce8fe9f190e31 /net
parent57978b2e692371f66c2887089315cac8a44493bb (diff)
downloadchromium_src-9e6e891828f117ebc300ea48dbb43ce3296e152e.zip
chromium_src-9e6e891828f117ebc300ea48dbb43ce3296e152e.tar.gz
chromium_src-9e6e891828f117ebc300ea48dbb43ce3296e152e.tar.bz2
Have the "net" build install icudt38l.dat on non-Windows systems.
TBR: tc git-svn-id: svn://svn.chromium.org/chrome/trunk/src@994 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/SConscript6
1 files changed, 5 insertions, 1 deletions
diff --git a/net/SConscript b/net/SConscript
index 699f669..1d20778 100644
--- a/net/SConscript
+++ b/net/SConscript
@@ -336,4 +336,8 @@ if env['PLATFORM'] == 'win32':
# Setup alias for building all parts of net.
-env.Alias('net', ['.', installed_tests, '../icudt38.dll'])
+if env['PLATFORM'] == 'win32':
+ icudata = '../icudt38.dll'
+else:
+ icudata = '../icudt38l.dat'
+env.Alias('net', ['.', installed_tests, icudata)