else \
serial=`$(git_commit_count)`; \
fi; \
- if test 0 = '$(V)'; then echo " GEN " $@; \
+ if test 0 = '$(AM_DEFAULT_VERBOSITY)' && test 1 != '$(V)'; \
+ then echo " GEN " $@; \
else echo $(bootstrap_edit) "'$(ltversion_in)' > '$@'"; fi; \
$(bootstrap_edit) '$(ltversion_in)' > '$@'; \
chmod a-w '$@'; \
done; \
if $$rebuild; then \
rm -f '$@'; \
- if test 0 = '$(V)'; then echo " GEN " $@; \
+ if test 0 = '$(AM_DEFAULT_VERBOSITY)' && test 1 != '$(V)'; \
+ then echo " GEN " $@; \
else echo "$(inline_source) '$(ltmain_in)' |" $(bootstrap_edit) "> '$@'"; fi; \
$(inline_source) '$(ltmain_in)' | $(bootstrap_edit) > '$@'; \
chmod a-w '$@'; \
case $$prereq in *.version);; *) rebuild=:;; esac; \
done; \
if $$rebuild; then \
- if test 0 = '$(V)'; then echo " GEN " $@; \
+ if test 0 = '$(AM_DEFAULT_VERBOSITY)' && test 1 != '$(V)'; \
+ then echo " GEN " $@; \
else echo '$(SHELL) $(top_builddir)/config.status "$@"'; fi; \
cd '$(top_builddir)' && '$(SHELL)' ./config.status '$@'; \
fi
re_odd_version = '\([0-9][0-9]*.[0-9][0-9]*.[0-9]*[13579]\)'
$(readme): FORCE
@if test -n `expr $(VERSION) : $(re_odd_version)`; then \
- if test 0 = '$(V)'; then echo " GEN " $@; \
+ if test 0 = '$(AM_DEFAULT_VERBOSITY)' && 1 != '$(V)'; \
+ then echo " GEN " $@; \
else echo "$(SHELL) $(edit_readme_alpha) $@"; fi; \
$(SHELL) $(edit_readme_alpha) '$@'; \
fi
echo "aux_dir = $build_aux"
echo "ltdl_dir = $ltdl_dir"
echo "macro_dir = $macro_dir"
+
+ # The following allow us to tie bootstrap-deps output verbosity
+ # into the bootstrap --verbose option:
+ echo 'AM_V_GEN = $(am__v_GEN_$(V))'
+ echo 'am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))'
+ echo 'am__v_GEN_0 = @echo " GEN " $@;'
+ echo 'AM_V_at = $(am__v_at_$(V))'
+ echo 'am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))'
+ echo 'am__v_at_0 = @'
+
$SED '/^if /,/^endif$/d;/^else$/,/^endif$/d;/^include /d' $makes
} > Makefile
# generate them here, and have Makefile rules to keep them up to date.
func_echo "running: $MAKE bootstrap-deps ..."
$opt_dry_run || {
- output=`$MAKE bootstrap-deps \
+ $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" 2>&1`
+ SED="$SED" srcdir=. VERSION="$package_version"
}
status=$?
- test 0 -eq "$status" || echo "$output"
rm -f Makefile
test 0 -eq "$status" ||exit $EXIT_FAILURE
}