Issue: WARNING: Makefile 'package/feeds/packages/ieee8021xclient/Makefile' has a dependency on 'wpa_supplicant', which does not exist

Hi there,
I am trying to build openwrt on my Raspberry Pi 4 CM4 module as a router, and i have already clone the latest version of openwrt via github.
my compile os is : Raspbian GNU/Linux 10 (buster)
my kernel version is : Linux raspberrypi 5.10.17-v7l+ #1414 SMP Fri Apr 30 13:20:47 BST 2021 armv7l GNU/Linux
GCC version: gcc version 8.3.0 (Raspbian 8.3.0-6+rpi1)

git clone --depth=1 https://github.com/openwrt/openwrt
cd openwrt/
./scripts/feeds update -a
./scripts/feeds install -a

but encount this error message:

pi@raspberrypi:~/openwrt/openwrt $ ./scripts/feeds update -a
Updating feed 'packages' from 'https://git.openwrt.org/feed/packages.git' ...
Already up to date.
Updating feed 'luci' from 'https://git.openwrt.org/project/luci.git' ...
Already up to date.
Updating feed 'routing' from 'https://git.openwrt.org/feed/routing.git' ...
Already up to date.
Updating feed 'telephony' from 'https://git.openwrt.org/feed/telephony.git' ...
Already up to date.
Create index file './feeds/packages.index'
Create index file './feeds/luci.index'
Create index file './feeds/routing.index'
Create index file './feeds/telephony.index'
pi@raspberrypi:~/openwrt/openwrt $ ./scripts/feeds install -a
WARNING: Makefile 'package/feeds/packages/ieee8021xclient/Makefile' has a dependency on 'wpa_supplicant', which does not exist
Installing all packages from feed packages.
Installing all packages from feed luci.
Installing all packages from feed routing.
Installing all packages from feed telephony.

and i am trying to ignore it , and i ran:

make menuconfig 
make V=s -j1

it shows this error message:

Configuring kmod-spi-dev.
Collected errors:
 * pkg_hash_check_unresolved: cannot find dependency wpa_supplicant for ieee8021xclient
 * pkg_hash_fetch_best_installation_candidate: Packages for ieee8021xclient found, but incompatible with the architectures configured
 * opkg_install_cmd: Cannot install package ieee8021xclient.
make[2]: *** [package/Makefile:70: package/install] Error 255
make[2]: Leaving directory '/home/pi/openwrt/openwrt'
make[1]: *** [package/Makefile:111: /home/pi/openwrt/openwrt/staging_dir/target-aarch64_cortex-a72_musl/stamp/.package_install] Error 2
make[1]: Leaving directory '/home/pi/openwrt/openwrt'
make: *** [/home/pi/openwrt/openwrt/include/toplevel.mk:230: world] Error 2

How can i sovle this problem ? i have already installed wpasupplicant package but no luck.

There is a PR where it's being discussed.

https:/github.com/openwrt/packages/pull/16532

thanks a lot.

I have posted this issue to his PR, and I am trying to modify the Makefile in packages/ieee8021xclient/ folder and change the macro from: wpa_supplicant to wpa-supplicant and compile it again. thanks for your tips.