summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Walle <bernhard@bwalle.de>2016-05-24 09:28:54 (GMT)
committerAlexey Neyman <stilor@att.net>2016-11-19 20:40:47 (GMT)
commit6cb9e62f6cc680935ad1b759018e214582b54550 (patch)
tree5b04875111018ea7b7845b01e6a3fc20203a269b
parent3eb2e351f02d82fad255a9e6433c4c4d659c5de0 (diff)
comptools/make: Fix CT_COMP_TOOLS_make_gmake option
Commit 6f8e89cb5ca061e899bf3feaaf3fecf30d366c3e broke that option. Since ${make} points to /usr/bin/make, making the symlink from gmake to /usr/bin/make is obviously the wrong decision. gmake should link to our (old-versioned) self-built make. Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
-rw-r--r--scripts/build/companion_tools/050-make.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/companion_tools/050-make.sh b/scripts/build/companion_tools/050-make.sh
index 3d6da7c..8918753 100644
--- a/scripts/build/companion_tools/050-make.sh
+++ b/scripts/build/companion_tools/050-make.sh
@@ -23,7 +23,7 @@ do_companion_tools_make_build() {
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