From: Jonas Gorski Date: Sat, 28 Oct 2017 09:57:39 +0000 (+0200) Subject: build: actually fix the creation of PKG_INFO_DIR X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=commitdiff_plain;h=22b5e285ab36ee0a0dae97d4f60dc77fc3943bee build: actually fix the creation of PKG_INFO_DIR The creation was accidentally moved to the wrong hook, fix it by moving it to the pre hook. Fixes: e5e5c3f5fd38 ("build: ensure PKG_INFO_DIR exists before trying to use it") Signed-off-by: Jonas Gorski --- diff --git a/include/kernel.mk b/include/kernel.mk index f2d2a129d7..d620fdc0c6 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -126,6 +126,7 @@ endif PKG_EXTMOD_SUBDIRS ?= . define populate_module_symvers + @mkdir -p $(PKG_INFO_DIR) cat /dev/null > $(PKG_INFO_DIR)/$(PKG_NAME).symvers; \ for subdir in $(PKG_EXTMOD_SUBDIRS); do \ cat $(PKG_INFO_DIR)/*.symvers 2>/dev/null > $(PKG_BUILD_DIR)/$$$$subdir/Module.symvers; \ @@ -133,7 +134,6 @@ define populate_module_symvers endef define collect_module_symvers - @mkdir -p $(PKG_INFO_DIR) for subdir in $(PKG_EXTMOD_SUBDIRS); do \ grep -F $(PKG_BUILD_DIR) $(PKG_BUILD_DIR)/$$$$subdir/Module.symvers >> $(PKG_BUILD_DIR)/Module.symvers.tmp; \ done; \