diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 02:27:58 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 02:27:58 +0000 |
commit | 9bcefe3f12c98f07a94c3de4a9651ecc066a848f (patch) | |
tree | e480a7615c34a3cc7a3d2273e795138eab98d5ed | |
parent | 8322ac6958d1eed444e4f681d4f1ab6bfff4a3f9 (diff) | |
download | chromium_src-9bcefe3f12c98f07a94c3de4a9651ecc066a848f.zip chromium_src-9bcefe3f12c98f07a94c3de4a9651ecc066a848f.tar.gz chromium_src-9bcefe3f12c98f07a94c3de4a9651ecc066a848f.tar.bz2 |
Expect icudt38.dll in $DESTINATION_ROOT, not $TARGET_ROOT.
Review URL: http://codereview.chromium.org/10928
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5441 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/SConscript b/webkit/SConscript index 0ada52b..f6924bf 100644 --- a/webkit/SConscript +++ b/webkit/SConscript @@ -265,9 +265,9 @@ env.SConscript(sconscript_dirs, exports=['env', 'env_res']) # directory tree as a huge content-signature string. # Instead we're going to let all the subsidiary SConscript files # add their own individual targets to the 'webkit' Alias. -#env.Alias('webkit', ['.', '$TARGET_ROOT/icudt38.dll']) +#env.Alias('webkit', ['.', '$DESTINATION_ROOT/icudt38.dll']) if env['PLATFORM'] == 'win32': - env.Alias('webkit', ['$TARGET_ROOT/icudt38.dll']) + env.Alias('webkit', ['$DESTINATION_ROOT/icudt38.dll']) version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h', ['$WEBCORE_DIR/Configurations/Version.xcconfig', |