mirror of
https://github.com/nxp-imx/mwifiex.git
synced 2025-01-15 08:15:33 +00:00
mxm_wifiex: Makefile: fix Yocto build error when build mapp before
kernel When build mapp before the kernel build, Yocto will meet below build error, since we don't need to build kernel modules in this repo for L5.4.70, so delete the default modules build here: Makefile:412: recipe for target 'default' failed make: *** [default] Error 2 Signed-off-by: Sherry Sun <sherry.sun@nxp.com> Reviewed-by: yang.tian <yang.tian@nxp.com>
This commit is contained in:
parent
78b86e78be
commit
72fdfec440
1 changed files with 1 additions and 7 deletions
|
@ -405,12 +405,6 @@ endif
|
|||
endif
|
||||
endif
|
||||
|
||||
# Otherwise we were called directly from the command line; invoke the kernel build system.
|
||||
else
|
||||
|
||||
default:
|
||||
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
|
||||
|
||||
endif
|
||||
|
||||
###############################################################
|
||||
|
@ -451,7 +445,7 @@ mapp/mlanevent:
|
|||
|
||||
echo:
|
||||
|
||||
build: echo default
|
||||
build:
|
||||
|
||||
@if [ ! -d $(BINDIR) ]; then \
|
||||
mkdir $(BINDIR); \
|
||||
|
|
Loading…
Reference in a new issue