From dadcac8b382cd912199530f6e5920c7232f7ae1f Mon Sep 17 00:00:00 2001 From: Jean-Christophe PLAGNIOL-VILLARD Date: Wed, 19 Sep 2012 11:40:42 +0200 Subject: MAKEALL: accept defconfig with '-' in it replace '-' with '_' for the configuration option Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Signed-off-by: Sascha Hauer --- MAKEALL | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index 056a4d0547..c08e484cda 100755 --- a/MAKEALL +++ b/MAKEALL @@ -96,8 +96,10 @@ do_build_target() { mkdir -p "${LOGDIR}/${target}" printf "Building ${arch} ${target} \n" >&2 | tee -a "${log_report}" - cross_compile=`eval echo '$CROSS_COMPILE_'${target}` - cross_compile_set=`eval echo '${CROSS_COMPILE_'${target}'+set}'` + tmp=`echo "${target}" | tr - _` + + cross_compile=`eval echo '$CROSS_COMPILE_'${tmp}` + cross_compile_set=`eval echo '${CROSS_COMPILE_'${tmp}'+set}'` if [ "${cross_compile_set}" = "" ] then cross_compile=`eval echo '$CROSS_COMPILE_'${arch}` -- cgit v1.2.3