diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2013-12-16 15:58:36 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-12-16 15:58:36 +0100 |
commit | 9e8015d4651a77a40a9ffe48051e53baecc20ced (patch) | |
tree | d922a2319cdf3652171bef83a1ad6ce204dabba1 /package/pkg-generic.mk | |
parent | 879058a16ea326fcdb7e96e3995a09112e193edc (diff) |
pkg-generic.mk: handle packages under toolchain
E.G. for toolchain-buildroot / toolchain-external. Now these packages are
correctly handled by make source / external-deps.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/pkg-generic.mk')
-rw-r--r-- | package/pkg-generic.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk index 1fce71b63..45b808a69 100644 --- a/package/pkg-generic.mk +++ b/package/pkg-generic.mk @@ -509,6 +509,8 @@ ifeq ($(1),linux) $(2)_KCONFIG_VAR = BR2_LINUX_KERNEL else ifeq ($(4),boot/) $(2)_KCONFIG_VAR = BR2_TARGET_$(2) +else ifeq ($(4),toolchain/) +$(2)_KCONFIG_VAR = BR2_$(2) else $(2)_KCONFIG_VAR = BR2_PACKAGE_$(2) endif |