diff options
| author | Eric Fahlgren | 2026-01-02 16:20:15 +0000 |
|---|---|---|
| committer | Robert Marko | 2026-01-02 17:11:33 +0000 |
| commit | 107ac004043a3390dd050f0ad0675a398d89f8cc (patch) | |
| tree | a964e8b888acb168ddeb59a36b137b1e8f1daf98 | |
| parent | c80bae3c1893216dc7d9965afb44eff23e3a8a23 (diff) | |
| download | openwrt-107ac004043a3390dd050f0ad0675a398d89f8cc.tar.gz | |
package: ethtool: specify just one default variant
Inadvertently defining 'DEFAULT_VARIANT' on both ethool and
ethtool-full variants resulted in
$ make defconfig
tmp/.config-package.in:121615:error: recursive dependency detected!
tmp/.config-package.in:121615: symbol PACKAGE_ethtool-full is selected by PACKAGE_ethtool
tmp/.config-package.in:121605: symbol PACKAGE_ethtool depends on PACKAGE_ethtool-full
Fix this by simply undefining 'DEFAULT_VARIANT' on the ethtool-full
variant, which is ugly, but expedient.
Fixes: https://github.com/openwrt/openwrt/commit/f4fdb996
Signed-off-by: Eric Fahlgren <ericfahlgren@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/21363
Signed-off-by: Robert Marko <robimarko@gmail.com>
(cherry picked from commit 7a78dc4a5d1edc63116b100ffe6c374913d128a8)
| -rw-r--r-- | package/network/utils/ethtool/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/utils/ethtool/Makefile b/package/network/utils/ethtool/Makefile index 4d75b92d6f..883954db22 100644 --- a/package/network/utils/ethtool/Makefile +++ b/package/network/utils/ethtool/Makefile @@ -43,6 +43,7 @@ define Package/ethtool-full PROVIDES:=ethtool DEPENDS:=+libmnl CONFLICTS:= + DEFAULT_VARIANT:= endef define Package/ethtool/description |