| 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-linux-ports-0.sh | 7 # nacl-install-linux-ports-0.sh |
| 8 # | 8 # |
| 9 # usage: nacl-install-linux-ports-0.sh | 9 # usage: nacl-install-linux-ports-0.sh |
| 10 # | 10 # |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 BuildPackage gsl | 26 BuildPackage gsl |
| 27 BuildPackage sdl_image | 27 BuildPackage sdl_image |
| 28 BuildPackage sdl_ttf | 28 BuildPackage sdl_ttf |
| 29 BuildPackage sdl_net | 29 BuildPackage sdl_net |
| 30 BuildPackage sdl_mixer | 30 BuildPackage sdl_mixer |
| 31 BuildPackage scummvm | 31 BuildPackage scummvm |
| 32 BuildPackage bochs | 32 BuildPackage bochs |
| 33 BuildPackage openssl | 33 BuildPackage openssl |
| 34 BuildPackage jsoncpp | 34 BuildPackage jsoncpp |
| 35 | 35 |
| 36 echo "@@@BUILD_STEP ${NACL_PACKAGES_BITSIZE}-bit Summary@@@" | 36 echo "@@@BUILD_STEP ${NACL_ARCH} Summary@@@" |
| 37 if [[ $RESULT != 0 ]] ; then | 37 if [[ $RESULT != 0 ]] ; then |
| 38 echo "@@@STEP_FAILURE@@@" | 38 echo "@@@STEP_FAILURE@@@" |
| 39 fi | 39 fi |
| 40 | 40 |
| 41 echo -e "$MESSAGES" | 41 echo -e "$MESSAGES" |
| 42 | 42 |
| 43 exit $RESULT | 43 exit $RESULT |
| OLD | NEW |