diff options
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 999e8a7d5bf7..006c96f5fcb5 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -31,6 +31,7 @@ silentoldconfig: $(obj)/conf | |||
31 | $< -s $(Kconfig) | 31 | $< -s $(Kconfig) |
32 | 32 | ||
33 | localmodconfig: $(obj)/streamline_config.pl $(obj)/conf | 33 | localmodconfig: $(obj)/streamline_config.pl $(obj)/conf |
34 | $(Q)mkdir -p include/generated | ||
34 | $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config | 35 | $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config |
35 | $(Q)if [ -f .config ]; then \ | 36 | $(Q)if [ -f .config ]; then \ |
36 | cmp -s .tmp.config .config || \ | 37 | cmp -s .tmp.config .config || \ |
@@ -45,6 +46,7 @@ localmodconfig: $(obj)/streamline_config.pl $(obj)/conf | |||
45 | $(Q)rm -f .tmp.config | 46 | $(Q)rm -f .tmp.config |
46 | 47 | ||
47 | localyesconfig: $(obj)/streamline_config.pl $(obj)/conf | 48 | localyesconfig: $(obj)/streamline_config.pl $(obj)/conf |
49 | $(Q)mkdir -p include/generated | ||
48 | $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config | 50 | $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config |
49 | $(Q)sed -i s/=m/=y/ .tmp.config | 51 | $(Q)sed -i s/=m/=y/ .tmp.config |
50 | $(Q)if [ -f .config ]; then \ | 52 | $(Q)if [ -f .config ]; then \ |