From: Ross Burton Date: Fri, 26 May 2017 16:11:32 +0000 (+0100) Subject: Makefile: ensure frontends/ exits before writing into it X-Git-Url: https://git.sur5r.net/?p=kconfig-frontends;a=commitdiff_plain;h=f7986375129d1ada7dc6abeeec5b9d00ef6f7149 Makefile: ensure frontends/ exits before writing into it As previously, if GCC dependencies are not being written and the build is out of tree then frontends/ won't exist so we need to create it. Signed-off-by: Ross Burton Signed-off-by: Yann E. MORIN --- diff --git a/Makefile.am b/Makefile.am index 1baa110..434db5d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -171,6 +171,7 @@ if COND_kconfig bin_SCRIPTS += frontends/kconfig frontends/kconfig: frontends/kconfig.in + $(MKDIR_P) $(@D) $(AM_V_GEN)$(SED) -e 's/@KCFG_LIST@/$(kcfg_list)/g' \ $< >$@ @chmod +x $@