bootstrap: emphasize command executions with terminal bold.

* bootstrap.in (func_show_eval): Use $require_term_colors to
embolden the command about to be executed in output.
* bootstrap: Regenerate.
* bootstrap.conf (libtool_build_prerequisites): Use the standard
(colorful!) bootstrap func_show_eval here too.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
This commit is contained in:
Gary V. Vaughan 2012-10-23 22:17:24 -05:00
parent 87d3655d1c
commit d5c146580c
3 changed files with 10 additions and 9 deletions

View File

@ -4240,13 +4240,15 @@ func_show_eval ()
{
$debug_cmd
$require_term_colors
_G_cmd=$1
_G_fail_exp=${2-':'}
${opt_silent-'false'} || {
func_quote_for_eval $_G_cmd
eval func_truncate_cmd $func_quote_for_eval_result
func_echo "running: $func_truncate_cmd_result"
func_echo "running: $tc_bold$func_truncate_cmd_result$tc_reset"
}
${opt_dry_run-'false'} || {

View File

@ -218,14 +218,11 @@ libtool_build_prerequisites ()
# Building distributed files from configure is bad for automake, so we
# generate them here, and have Makefile rules to keep them up to date.
func_echo "running: $MAKE bootstrap-deps ..."
$opt_dry_run || {
$MAKE bootstrap-deps \
func_show_eval "$MAKE bootstrap-deps \
AM_DEFAULT_VERBOSITY=0 `$opt_verbose && echo V=1` \
PACKAGE="$package" PACKAGE_BUGREPORT="$package_bugreport" \
PACKAGE_NAME="$package_name" PACKAGE_URL="$package_url" \
SED="$SED" srcdir=. VERSION="$package_version"
}
PACKAGE='$package' PACKAGE_BUGREPORT='$package_bugreport' \
PACKAGE_NAME='$package_name' PACKAGE_URL='$package_url' \
SED='$SED' srcdir=. VERSION='$package_version'"
status=$?
rm -f Makefile

View File

@ -2072,13 +2072,15 @@ func_show_eval ()
{
$debug_cmd
$require_term_colors
_G_cmd=$1
_G_fail_exp=${2-':'}
${opt_silent-'false'} || {
func_quote_for_eval $_G_cmd
eval func_truncate_cmd $func_quote_for_eval_result
func_echo "running: $func_truncate_cmd_result"
func_echo "running: $tc_bold$func_truncate_cmd_result$tc_reset"
}
${opt_dry_run-'false'} || {