Skip to content

Commit

Permalink
Merge pull request #554 from stilor/comptools-loglevel
Browse files Browse the repository at this point in the history
Fix loglevel for steps in companion tools
  • Loading branch information
stilor committed Jan 24, 2017
2 parents 48bb111 + a5c48a5 commit 9061763
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions scripts/build/companion_tools/050-make.sh
Expand Up @@ -12,7 +12,7 @@ do_companion_tools_make_extract() {
}

do_companion_tools_make_for_build() {
CT_DoStep EXTRA "Installing make for build"
CT_DoStep INFO "Installing make for build"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-make-build"
do_make_backend \
host=${CT_BUILD} \
Expand All @@ -27,7 +27,7 @@ do_companion_tools_make_for_build() {
}

do_companion_tools_make_for_host() {
CT_DoStep EXTRA "Installing make for host"
CT_DoStep INFO "Installing make for host"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-make-host"
do_make_backend \
host=${CT_HOST} \
Expand Down
4 changes: 2 additions & 2 deletions scripts/build/companion_tools/100-m4.sh
Expand Up @@ -11,7 +11,7 @@ do_companion_tools_m4_extract() {
}

do_companion_tools_m4_for_build() {
CT_DoStep EXTRA "Installing m4 for build"
CT_DoStep INFO "Installing m4 for build"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-m4-build"
do_m4_backend \
host=${CT_BUILD} \
Expand All @@ -23,7 +23,7 @@ do_companion_tools_m4_for_build() {
}

do_companion_tools_m4_for_host() {
CT_DoStep EXTRA "Installing m4 for host"
CT_DoStep INFO "Installing m4 for host"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-m4-host"
do_m4_backend \
host=${CT_HOST} \
Expand Down
4 changes: 2 additions & 2 deletions scripts/build/companion_tools/200-autoconf.sh
Expand Up @@ -12,15 +12,15 @@ do_companion_tools_autoconf_extract() {
}

do_companion_tools_autoconf_for_build() {
CT_DoStep EXTRA "Installing autoconf for build"
CT_DoStep INFO "Installing autoconf for build"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-autoconf-build"
do_autoconf_backend host=${CT_BUILD} prefix="${CT_BUILD_COMPTOOLS_DIR}"
CT_Popd
CT_EndStep
}

do_companion_tools_autoconf_for_host() {
CT_DoStep EXTRA "Installing autoconf for host"
CT_DoStep INFO "Installing autoconf for host"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-autoconf-host"
do_autoconf_backend host=${CT_HOST} prefix="${CT_PREFIX_DIR}"
CT_Popd
Expand Down
4 changes: 2 additions & 2 deletions scripts/build/companion_tools/300-automake.sh
Expand Up @@ -12,15 +12,15 @@ do_companion_tools_automake_extract() {
}

do_companion_tools_automake_for_build() {
CT_DoStep EXTRA "Installing automake for build"
CT_DoStep INFO "Installing automake for build"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-automake-build"
do_automake_backend host=${CT_BUILD} prefix="${CT_BUILD_COMPTOOLS_DIR}"
CT_Popd
CT_EndStep
}

do_companion_tools_automake_for_host() {
CT_DoStep EXTRA "Installing automake for host"
CT_DoStep INFO "Installing automake for host"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-automake-host"
do_automake_backend host=${CT_HOST} prefix="${CT_PREFIX_DIR}"
CT_Popd
Expand Down
4 changes: 2 additions & 2 deletions scripts/build/companion_tools/400-libtool.sh
Expand Up @@ -12,15 +12,15 @@ do_companion_tools_libtool_extract() {
}

do_companion_tools_libtool_for_build() {
CT_DoStep EXTRA "Installing libtool for build"
CT_DoStep INFO "Installing libtool for build"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-libtool-build"
do_libtool_backend host=${CT_BUILD} prefix="${CT_BUILD_COMPTOOLS_DIR}"
CT_Popd
CT_EndStep
}

do_companion_tools_libtool_for_host() {
CT_DoStep EXTRA "Installing libtool for host"
CT_DoStep INFO "Installing libtool for host"
CT_mkdir_pushd "${CT_BUILD_DIR}/build-libtool-host"
do_libtool_backend host=${CT_HOST} prefix="${CT_PREFIX_DIR}"
CT_Popd
Expand Down

0 comments on commit 9061763

Please sign in to comment.