| OLD | NEW |
| 1 # Copyright (c) 2013 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2013 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 EXTRA_CONFIGURE_ARGS="--with-curses" | 5 EXTRA_CONFIGURE_ARGS="--with-curses" |
| 6 EXTRA_CONFIGURE_ARGS+=" --with-installed-readline --enable-readline" | 6 EXTRA_CONFIGURE_ARGS+=" --with-installed-readline --enable-readline" |
| 7 NACLPORTS_CPPFLAGS+=" -DHAVE_GETHOSTNAME -DNO_MAIN_ENV_ARG" | 7 NACLPORTS_CPPFLAGS+=" -DHAVE_GETHOSTNAME -DNO_MAIN_ENV_ARG" |
| 8 NACLPORTS_CPPFLAGS+=" -Dmain=nacl_main -Dpipe=nacl_spawn_pipe" | 8 NACLPORTS_CPPFLAGS+=" -Dmain=nacl_main -Dpipe=nacl_spawn_pipe" |
| 9 export LIBS="${NACL_CLI_MAIN_LIB}" | 9 export LIBS="${NACL_CLI_MAIN_LIB}" |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 # that parallel build will sometimes fail due to lib/intl/libintl.h | 28 # that parallel build will sometimes fail due to lib/intl/libintl.h |
| 29 # not being generated before files that use it are compiled. | 29 # not being generated before files that use it are compiled. |
| 30 # For example pathexp.c indirectly depends on libintl.h but compilation | 30 # For example pathexp.c indirectly depends on libintl.h but compilation |
| 31 # of this file doesn't depend on the rule that generates it. | 31 # of this file doesn't depend on the rule that generates it. |
| 32 # The fix is to explictly build lib/intl before we build everything else. | 32 # The fix is to explictly build lib/intl before we build everything else. |
| 33 LogExecute make -C lib/intl | 33 LogExecute make -C lib/intl |
| 34 DefaultBuildStep | 34 DefaultBuildStep |
| 35 } | 35 } |
| 36 | 36 |
| 37 PublishStep() { | 37 PublishStep() { |
| 38 # Publish a generic per-arch copy for use by programs like emacs. | |
| 39 PublishByArchForDevEnv | |
| 40 PublishMultiArch bash${NACL_EXEEXT} bash bash_multiarch | 38 PublishMultiArch bash${NACL_EXEEXT} bash bash_multiarch |
| 41 } | 39 } |
| OLD | NEW |