[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1432159260-39390-7-git-send-email-olof@lixom.net>
Date: Wed, 20 May 2015 15:00:56 -0700
From: Olof Johansson <olof@...om.net>
To: yann.morin.1998@...e.fr
Cc: linux-kernel@...r.kernel.org, linux-kbuild@...r.kernel.org,
dvhart@...ux.intel.com, john.stultz@...aro.org, jwboyer@...hat.com,
Olof Johansson <olof@...om.net>
Subject: [PATCH 06/10] merge_config.sh: only consider last value of symbols
Signed-off-by: Olof Johansson <olof@...om.net>
---
scripts/kconfig/merge_config.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/kconfig/merge_config.sh b/scripts/kconfig/merge_config.sh
index 81c0b16..932fd52 100755
--- a/scripts/kconfig/merge_config.sh
+++ b/scripts/kconfig/merge_config.sh
@@ -39,7 +39,7 @@ usage() {
}
getval() {
- grep -w -e "$1" "$2" | sed 's/^CONFIG_\(.*\)=n$/# CONFIG_\1 is not set/g'
+ grep -w -e "$1" "$2" | tail -1 | sed 's/^CONFIG_\(.*\)=n/# CONFIG_\1 is not set/g'
}
CONF_IS_ERR=false
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists