OLD | NEW |
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 | 6 |
7 # nacl-install-windows-ports-2.sh | 7 # nacl-install-windows-ports-2.sh |
8 # | 8 # |
9 # usage: nacl-install-windows-ports-2.sh | 9 # usage: nacl-install-windows-ports-2.sh |
10 # | 10 # |
(...skipping 11 matching lines...) Expand all Loading... |
22 BuildPackage nethack | 22 BuildPackage nethack |
23 BuildPackage dosbox | 23 BuildPackage dosbox |
24 BuildPackage snes9x | 24 BuildPackage snes9x |
25 # flac also builds ogg | 25 # flac also builds ogg |
26 # ogg is built by the bot windows-ports-0, but the package is re-built here as | 26 # ogg is built by the bot windows-ports-0, but the package is re-built here as |
27 # part of the load balancing | 27 # part of the load balancing |
28 BuildPackage flac | 28 BuildPackage flac |
29 BuildPackage cfitsio | 29 BuildPackage cfitsio |
30 BuildPackage speex | 30 BuildPackage speex |
31 | 31 |
32 echo "@@@BUILD_STEP ${NACL_PACKAGES_BITSIZE}-bit Summary@@@" | 32 echo "@@@BUILD_STEP ${NACL_ARCH} Summary@@@" |
33 if [[ $RESULT != 0 ]] ; then | 33 if [[ $RESULT != 0 ]] ; then |
34 echo "@@@STEP_FAILURE@@@" | 34 echo "@@@STEP_FAILURE@@@" |
35 fi | 35 fi |
36 | 36 |
37 echo -e "$MESSAGES" | 37 echo -e "$MESSAGES" |
38 | 38 |
39 exit $RESULT | 39 exit $RESULT |
OLD | NEW |