* [PATCH] kconfig: Fix localyesconfig don't sets to 'yes'
@ 2012-10-01 14:24 Yuta Ando
0 siblings, 0 replies; only message in thread
From: Yuta Ando @ 2012-10-01 14:24 UTC (permalink / raw)
To: linux-kbuild; +Cc: rostedt, linux-kernel, Yuta Ando
The kbuild target 'localyesconfig' has been same as 'localmodconfig'
since the commit 50bce3e "kconfig/streamline_config.pl: merge
local{mod,yes}config". The commit expects this script generates
different configure depending on target, but it was not yet implemented.
So I added code sets to 'yes' when target is 'localyesconfig'.
Signed-off-by: Yuta Ando <yuta.and@gmail.com>
---
scripts/kconfig/streamline_config.pl | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index 2fbbbc1..5eb3777 100644
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -605,6 +605,8 @@ foreach my $line (@config_file) {
if (defined($configs{$1})) {
if ($localyesconfig) {
$setconfigs{$1} = 'y';
+ print "$1=y\n";
+ next;
} else {
$setconfigs{$1} = $2;
}
--
1.7.3.4
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-10-01 14:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-01 14:24 [PATCH] kconfig: Fix localyesconfig don't sets to 'yes' Yuta Ando
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®