| 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 source pkg_info | 6 source pkg_info |
| 7 source ../../../build_tools/common.sh | 7 source ../../../build_tools/common.sh |
| 8 | 8 |
| 9 # Always 'make clean' because there could be artifacts from a previous build | 9 # Always 'make clean' because there could be artifacts from a previous build |
| 10 # in this sub-folder, 'make clean' from the top-level only clears 'out'. | 10 # in this sub-folder, 'make clean' from the top-level only clears 'out'. |
| 11 export CFLAGS=${NACLPORTS_CFLAGS} |
| 12 export LDFLAGS=${NACLPORTS_LDFLAGS} |
| 11 make clean | 13 make clean |
| 12 make | 14 make |
| OLD | NEW |