aboutsummaryrefslogtreecommitdiff
path: root/scripts/build
diff options
context:
space:
mode:
authorBernhard Walle <bernhard@bwalle.de>2016-05-24 11:28:54 +0200
committerAlexey Neyman <stilor@att.net>2016-11-19 12:40:47 -0800
commit6cb9e62f6cc680935ad1b759018e214582b54550 (patch)
tree5b04875111018ea7b7845b01e6a3fc20203a269b /scripts/build
parent3eb2e351f02d82fad255a9e6433c4c4d659c5de0 (diff)
downloadcrosstool-ng-6cb9e62f6cc680935ad1b759018e214582b54550.tar.gz
crosstool-ng-6cb9e62f6cc680935ad1b759018e214582b54550.tar.bz2
crosstool-ng-6cb9e62f6cc680935ad1b759018e214582b54550.zip
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>
Diffstat (limited to 'scripts/build')
-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 3d6da7c3..89187532 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