[openwrt/openwrt] nu801: fix DEPENDS on bcm53xx
LEDE Commits
lede-commits at lists.infradead.org
Sun Jul 17 05:46:36 PDT 2022
chunkeey pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/e0e644493019e5c8ce35f415a8fe5c0698eb36a0
commit e0e644493019e5c8ce35f415a8fe5c0698eb36a0
Author: Christian Lamparter <chunkeey at gmail.com>
AuthorDate: Sat Jul 16 01:56:53 2022 +0200
nu801: fix DEPENDS on bcm53xx
the tacked on @TARGET_bcm53xx causes warnings:
tmp/.config-package.in:14027:warning: ignoring unsupported character '@'
tmp/.config-package.in:26028:warning: ignoring unsupported character '@'
this was wrong.
Fixes: be1761fa1488 ("nu801: add MR26 to the table")
Signed-off-by: Christian Lamparter <chunkeey at gmail.com>
---
package/system/gpio-cdev/nu801/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/system/gpio-cdev/nu801/Makefile b/package/system/gpio-cdev/nu801/Makefile
index 73de6210f6..f91fbbc8ae 100644
--- a/package/system/gpio-cdev/nu801/Makefile
+++ b/package/system/gpio-cdev/nu801/Makefile
@@ -20,7 +20,7 @@ define Package/nu801
SECTION:=utils
CATEGORY:=Utilities
SUBMENU:=Userspace GPIO Drivers
- DEPENDS:=@TARGET_x86||@TARGET_bcm53xx
+ DEPENDS:=@(TARGET_x86||TARGET_bcm53xx)
KCONFIG:=CONFIG_GPIO_CDEV=y
TITLE:=NU801 LED Driver
endef
More information about the lede-commits
mailing list