summaryrefslogtreecommitdiff
path: root/scripts/build/companion_tools/300-automake.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build/companion_tools/300-automake.sh')
-rw-r--r--scripts/build/companion_tools/300-automake.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/build/companion_tools/300-automake.sh b/scripts/build/companion_tools/300-automake.sh
index 52f62d2..9d1b6e8 100644
--- a/scripts/build/companion_tools/300-automake.sh
+++ b/scripts/build/companion_tools/300-automake.sh
@@ -11,15 +11,20 @@ do_companion_tools_automake_extract() {
CT_Patch "automake" "${CT_AUTOMAKE_VERSION}"
}
-do_companion_tools_automake_build() {
+do_companion_tools_automake_for_build() {
CT_DoStep EXTRA "Installing automake"
mkdir -p "${CT_BUILD_DIR}/build-automake"
CT_Pushd "${CT_BUILD_DIR}/build-automake"
+ CT_DoLog EXTRA "Configuring automake"
CT_DoExecLog CFG \
"${CT_SRC_DIR}/automake-${CT_AUTOMAKE_VERSION}/configure" \
--prefix="${CT_BUILDTOOLS_PREFIX_DIR}"
+
+ CT_DoLog EXTRA "Building automake"
CT_DoExecLog ALL make
+
+ CT_DoLog EXTRA "Installing automake"
CT_DoExecLog ALL make install
CT_Popd
CT_EndStep