Skip to content

Commit 1073c15

Browse files
Mirsad Goran Todorovacmasahir0y
authored andcommitted
scripts: merge_config: Fix typo in variable name.
${WARNOVERRIDE} was misspelled as ${WARNOVVERIDE}, which caused a shell syntax error in certain paths of the script execution. Fixes: 46dff8d ("scripts: merge_config: Add option to suppress warning on overrides") Signed-off-by: Mirsad Goran Todorovac <[email protected]> Reviewed-by: Mark Brown <[email protected]> Acked-by: Randy Dunlap <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 3ced71d commit 1073c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/kconfig/merge_config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ for ORIG_MERGE_FILE in $MERGE_LIST ; do
145145
NEW_VAL=$(grep -w $CFG $MERGE_FILE)
146146
BUILTIN_FLAG=false
147147
if [ "$BUILTIN" = "true" ] && [ "${NEW_VAL#CONFIG_*=}" = "m" ] && [ "${PREV_VAL#CONFIG_*=}" = "y" ]; then
148-
${WARNOVVERIDE} Previous value: $PREV_VAL
148+
${WARNOVERRIDE} Previous value: $PREV_VAL
149149
${WARNOVERRIDE} New value: $NEW_VAL
150150
${WARNOVERRIDE} -y passed, will not demote y to m
151151
${WARNOVERRIDE}

0 commit comments

Comments
 (0)