summaryrefslogtreecommitdiff
path: root/scripts/build/companion_tools/050-make.sh
diff options
context:
space:
mode:
authorBryan Hundven <bryanhundven@gmail.com>2015-11-17 12:13:26 (GMT)
committerBryan Hundven <bryanhundven@gmail.com>2015-11-17 12:13:26 (GMT)
commit3c1d8625e60e31ed073beb247eaf934364a36957 (patch)
tree8685579adaf92a399a3388c7f5ca987937c781ab /scripts/build/companion_tools/050-make.sh
parent65fd24fc00b248c6b415a09ebd5c503288f897a1 (diff)
parent6f8e89cb5ca061e899bf3feaaf3fecf30d366c3e (diff)
Merge pull request #268 from bhundven/consistent_usage_of_found_apps
consistency: Use exported variables of required tools
Diffstat (limited to 'scripts/build/companion_tools/050-make.sh')
-rw-r--r--scripts/build/companion_tools/050-make.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build/companion_tools/050-make.sh b/scripts/build/companion_tools/050-make.sh
index 4247545..3d6da7c 100644
--- a/scripts/build/companion_tools/050-make.sh
+++ b/scripts/build/companion_tools/050-make.sh
@@ -20,10 +20,10 @@ do_companion_tools_make_build() {
CT_DoExecLog CFG "${CT_SRC_DIR}/make-${CT_MAKE_VERSION}/configure" \
--prefix="${CT_BUILDTOOLS_PREFIX_DIR}"
- CT_DoExecLog ALL make
- CT_DoExecLog ALL make install
+ CT_DoExecLog ALL ${make}
+ CT_DoExecLog ALL ${make} install
if [ "${CT_COMP_TOOLS_make_gmake}" = "y" ]; then
- CT_DoExecLog ALL ln -sv make "${CT_BUILDTOOLS_PREFIX_DIR}/bin/gmake"
+ CT_DoExecLog ALL ln -sv ${make} "${CT_BUILDTOOLS_PREFIX_DIR}/bin/gmake"
fi
CT_Popd
CT_EndStep