OLD | NEW |
---|---|
(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 | |
Mark Mentovai
2015/04/02 19:47:10
Extra blank line here.
jungshik at Google
2015/04/02 21:21:05
Done.
| |
7 TOPSRC=$(egrep '^top_srcdir =' Makefile | cut -d ' ' -f 3) | |
8 echo $TOPSRC | |
9 | |
10 cd data | |
11 make | |
12 | |
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 | |
Mark Mentovai
2015/04/02 19:47:10
Extra space here and on the next line.
Quote the
jungshik at Google
2015/04/02 21:21:05
Done.
| |
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 | |
OLD | NEW |