| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 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 # The script is located in "native_client/tools/llvm". | 6 # The script is located in "pnacl/". |
| 7 # Set pwd to native_client/ | 7 # Set pwd to pnacl/ |
| 8 cd "$(dirname "$0")"/../.. | 8 cd "$(dirname "$0")" |
| 9 LIBMODE=glibc tools/llvm/utman.sh "$@" | 9 LIBMODE=glibc ./build.sh "$@" |
| OLD | NEW |