Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Side by Side Diff: scripts/make_n_copy_data.sh

Issue 1051193002: Update tz db to 2015b (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: quote for $0 Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « android/patch_locale.sh ('k') | scripts/update_tz.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 TOPSRC=$(egrep '^top_srcdir =' Makefile | cut -d ' ' -f 3)
7 echo $TOPSRC
8
9 cd data
10 make
11
12 # A work-around for http://bugs.icu-project.org/trac/ticket/10570
13 sed -i 's/css3transform.res/root.res/' out/tmp/icudata.lst
14 make
15
16 if [ $? ]; then
17 echo "Failed to make data";
18 exit 1;
19 fi
20
21 cp out/tmp/icudt[5-9][0-9]l.dat "${TOPSRC}/data/in/icudtl.dat"
22 cp out/tmp/icudt[5-9][0-9]l_dat.S "${TOPSRC}/../linux/icudtl_dat.S"
23
24 cd "${TOPSRC}/../scripts"
25 sh make_mac_assembly.sh
OLDNEW
« no previous file with comments | « android/patch_locale.sh ('k') | scripts/update_tz.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698