Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285821
b: refs/heads/master
c: 320d41b
h: refs/heads/master
i:
  285819: cb5ed6d
v: v3
  • Loading branch information
John Stultz authored and Michal Marek committed Jan 14, 2012
1 parent ed67a3a commit daea410
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c0c0cda276b796e9c9710672b3bb4a737dbb4900
refs/heads/master: 320d41bb1597799669bab28a047f9868dd754aca
4 changes: 2 additions & 2 deletions trunk/scripts/kconfig/merge_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ make KCONFIG_ALLCONFIG=$TMP_FILE $ALLTARGET
# Check all specified config values took (might have missed-dependency issues)
for CFG in $(sed -n "$SED_CONFIG_EXP" $TMP_FILE); do

REQUESTED_VAL=$(sed -n "$SED_CONFIG_EXP" $TMP_FILE | grep -w -e "$CFG")
ACTUAL_VAL=$(sed -n "$SED_CONFIG_EXP" .config | grep -w -e "$CFG")
REQUESTED_VAL=$(grep -w -e "$CFG" $TMP_FILE)
ACTUAL_VAL=$(grep -w -e "$CFG" .config)
if [ "x$REQUESTED_VAL" != "x$ACTUAL_VAL" ] ; then
echo "Value requested for $CFG not in final .config"
echo "Requested value: $REQUESTED_VAL"
Expand Down

0 comments on commit daea410

Please sign in to comment.