summaryrefslogtreecommitdiff
path: root/scripts/build/companion_tools/400-libtool.sh
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2016-11-23 02:10:23 (GMT)
committerAlexey Neyman <stilor@att.net>2016-12-02 23:03:15 (GMT)
commit3f7fbd7beda5d840cd9a15189a94aaad4a802d37 (patch)
tree9a48499305e2716fde7031172220e5ceb3aea951 /scripts/build/companion_tools/400-libtool.sh
parentf7f70b67c44727d9eea48997c837e87c5e63ca33 (diff)
Move companion tool build into a separate step.
Also, rename "build" -> "for_build", since we're going to have a "for_host" as well. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/companion_tools/400-libtool.sh')
-rw-r--r--scripts/build/companion_tools/400-libtool.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/build/companion_tools/400-libtool.sh b/scripts/build/companion_tools/400-libtool.sh
index cfe0f63..a139369 100644
--- a/scripts/build/companion_tools/400-libtool.sh
+++ b/scripts/build/companion_tools/400-libtool.sh
@@ -11,15 +11,20 @@ do_companion_tools_libtool_extract() {
CT_Patch "libtool" "${CT_LIBTOOL_VERSION}"
}
-do_companion_tools_libtool_build() {
+do_companion_tools_libtool_for_build() {
CT_DoStep EXTRA "Installing libtool"
mkdir -p "${CT_BUILD_DIR}/build-libtool"
CT_Pushd "${CT_BUILD_DIR}/build-libtool"
+ CT_DoLog EXTRA "Configuring libtool"
CT_DoExecLog CFG \
"${CT_SRC_DIR}/libtool-${CT_LIBTOOL_VERSION}/configure" \
--prefix="${CT_BUILDTOOLS_PREFIX_DIR}"
+
+ CT_DoLog EXTRA "Building libtool"
CT_DoExecLog ALL make
+
+ CT_DoLog EXTRA "Installing libtool"
CT_DoExecLog ALL make install
CT_Popd
CT_EndStep