diff options
author | Michal Marek <mmarek@suse.cz> | 2009-11-25 15:14:49 +0100 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2009-12-12 13:08:16 +0100 |
commit | 32197c7ffb06b1319850f8fdfa1a49d32a63b79b (patch) | |
tree | 35179145156792698f4f68962f0c404162c85d3e /scripts/kconfig/Makefile | |
parent | db1d18657c96cc675596077cb60ef50fbe1947f8 (diff) | |
download | kernel_samsung_espresso10-32197c7ffb06b1319850f8fdfa1a49d32a63b79b.zip kernel_samsung_espresso10-32197c7ffb06b1319850f8fdfa1a49d32a63b79b.tar.gz kernel_samsung_espresso10-32197c7ffb06b1319850f8fdfa1a49d32a63b79b.tar.bz2 |
kbuild: create include/generated in silentoldconfig
The toplevel Makefile creates the directory if it runs silentoldconfig
automatically, but if run manually, it fails:
$ make mrproper
$ make defconfig && make silentoldconfig
*** Default configuration is based on 'x86_64_defconfig'
#
# configuration written to .config
#
scripts/kconfig/conf -s arch/x86/Kconfig
*** Error during update of the kernel configuration.
...
Move the mkdir command to the silentoldconfig target to make it work.
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r-- | scripts/kconfig/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 80599e3..999e8a7 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -27,6 +27,7 @@ oldconfig: $(obj)/conf $< -o $(Kconfig) silentoldconfig: $(obj)/conf + $(Q)mkdir -p include/generated $< -s $(Kconfig) localmodconfig: $(obj)/streamline_config.pl $(obj)/conf |