diff --git a/common/config b/common/config index 7e55b06..cbe6922 100644 --- a/common/config +++ b/common/config @@ -80,7 +80,7 @@ KEYMAP=none #=== Variables needed by iterative comparison analysis === #--- Should some iterative comparison analysis by made? 0(no)/1(yes) -COMPARE=0 +COMPARE=1 #--- The number of final stage builds to create and compare, min. 2, max. 5 ITERATIONS=3 diff --git a/common/func_validate_configs.sh b/common/func_validate_configs.sh index 344b6e6..1c482e2 100644 --- a/common/func_validate_configs.sh +++ b/common/func_validate_configs.sh @@ -1,13 +1,15 @@ # $Id$ +declare -r dotSTR=".................." + #----------------------------# validate_target() { # #----------------------------# local -r ERROR_MSG_pt1='The variable \"${L_arrow}TARGET${R_arrow}\" value ${L_arrow}${BOLD}${TARGET}${R_arrow} is invalid for the ${L_arrow}${BOLD}${ARCH}${R_arrow} architecture' local -r ERROR_MSG_pt2=' check the config file ${BOLD}${GREEN}\<$(echo $PROGNAME | tr [a-z] [A-Z])/config\> or \${OFF}' - local -r PARAM_VALS='TARGET: ${L_arrow}${BOLD}${TARGET}${OFF}${R_arrow}' - local -r PARAM_VALS2='TARGET32: ${L_arrow}${BOLD}${TARGET32}${OFF}${R_arrow}' + local -r PARAM_VALS='TARGET${dotSTR:6} ${L_arrow}${BOLD}${TARGET}${OFF}${R_arrow}' + local -r PARAM_VALS2='TARGET32${dotSTR:8} ${L_arrow}${BOLD}${TARGET32}${OFF}${R_arrow}' write_error_and_die() { echo -e "\n${DD_BORDER}" @@ -93,7 +95,7 @@ inline_doc local -r ERROR_MSG_pt1='The variable \"${L_arrow}${config_param}${R_arrow}\" value ${L_arrow}${BOLD}${!config_param}${R_arrow} is invalid,' local -r ERROR_MSG_pt2=' check the config file ${BOLD}${GREEN}\<$(echo $PROGNAME | tr [a-z] [A-Z])/config\> or \${OFF}' - local -r PARAM_VALS='${config_param}: ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}' + local -r PARAM_VALS='${config_param}${dotSTR:${#config_param}} ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}' local PARAM_LIST= local config_param