diff options
author | Sam Ravnborg <sam@mars.ravnborg.org> | 2005-09-11 22:32:57 +0200 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2005-09-11 22:32:57 +0200 |
commit | 5011cdd01bedd66b314e330a638c97984c71b53d (patch) | |
tree | 5c1c8300e9e5e4cddffaba39a4c97710babf78b9 /Makefile | |
parent | 5bb78269000cf326bfdfa19f79449c02a9158020 (diff) |
kbuild: fix silentoldconfig with make O=
Al Viro reported that sometimes silentoldconfig failed because
output directory was missing.
So create it unconditionally before executing conf
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -491,6 +491,7 @@ include .config # If .config is newer than include/linux/autoconf.h, someone tinkered # with it and forgot to run make oldconfig include/linux/autoconf.h: .config + $(Q)mkdir -p include/linux $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig else # Dummy target needed, because used as prerequisite |