diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-01-06 16:43:08 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-01-06 16:43:08 -0500 |
commit | 17263baf958b7ab1d8c60445f412a1080362c88c (patch) | |
tree | 4b85df6a0a89b624698f2e723581a02ab91cc02d /scripts | |
parent | c6f7afaeeda5b3c42ea8d7b27e197d223a04675e (diff) | |
download | linux-3.10-17263baf958b7ab1d8c60445f412a1080362c88c.tar.gz linux-3.10-17263baf958b7ab1d8c60445f412a1080362c88c.tar.bz2 linux-3.10-17263baf958b7ab1d8c60445f412a1080362c88c.zip |
kconfig: Create include/generated for localmodconfig
If someone downloads a brand new kernel and runs localmodconfig or
localyesconfig, the ending result will report:
*** Error during update of the kernel configuration.
This is because localmodconfig and localyesconfig must create the
include/generated directory to place the autoconf.h file.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 999e8a7d5bf..006c96f5fcb 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -31,6 +31,7 @@ silentoldconfig: $(obj)/conf $< -s $(Kconfig) localmodconfig: $(obj)/streamline_config.pl $(obj)/conf + $(Q)mkdir -p include/generated $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config $(Q)if [ -f .config ]; then \ cmp -s .tmp.config .config || \ @@ -45,6 +46,7 @@ localmodconfig: $(obj)/streamline_config.pl $(obj)/conf $(Q)rm -f .tmp.config localyesconfig: $(obj)/streamline_config.pl $(obj)/conf + $(Q)mkdir -p include/generated $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config $(Q)sed -i s/=m/=y/ .tmp.config $(Q)if [ -f .config ]; then \ |