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

Side by Side Diff: nacltoons/build/build-naclports.sh

Issue 12094088: Don't ignore failures in build-cocos2dx.sh. (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « nacltoons/build/build-cocos2dx.sh ('k') | nacltoons/game.mk » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5
6 set -e
6 7
7 SCRIPT_DIR="$(cd $(dirname $0) && pwd)" 8 SCRIPT_DIR="$(cd $(dirname $0) && pwd)"
8 NACLPORTS_ROOT=${SCRIPT_DIR}/../../third_party/naclports/src 9 NACLPORTS_ROOT=${SCRIPT_DIR}/../../third_party/naclports/src
9 10
10 source ${NACLPORTS_ROOT}/build_tools/bots/bot_common.sh 11 source ${NACLPORTS_ROOT}/build_tools/bots/bot_common.sh
11 12
12 OUT_DIR=${SCRIPT_DIR}/../out/naclports 13 OUT_DIR=${SCRIPT_DIR}/../out/naclports
13 OUT_BUNDLE_DIR=${OUT_DIR} 14 OUT_BUNDLE_DIR=${OUT_DIR}
14 15
15 cd ${NACLPORTS_ROOT} 16 cd ${NACLPORTS_ROOT}
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 76
76 echo "Moving results..." 77 echo "Moving results..."
77 for package in $PACKAGES; do 78 for package in $PACKAGES; do
78 MoveLibs $package 79 MoveLibs $package
79 done 80 done
80 81
81 echo "Done!" 82 echo "Done!"
82 echo -e "$MESSAGES" 83 echo -e "$MESSAGES"
83 84
84 exit $RESULT 85 exit $RESULT
OLDNEW
« no previous file with comments | « nacltoons/build/build-cocos2dx.sh ('k') | nacltoons/game.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698