diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2017-03-09 22:52:47 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-03-09 22:52:47 +0100 |
commit | 5354a75eb12009162dad0bc3fe5dc9d20fe8183b (patch) | |
tree | f8d96e6c8691792e572a76d419e1356c707640f3 | |
parent | 72599de9fab4e7ed18c75bb3487797dd1b21f36b (diff) | |
download | buildroot-5354a75eb12009162dad0bc3fe5dc9d20fe8183b.tar.gz buildroot-5354a75eb12009162dad0bc3fe5dc9d20fe8183b.zip |
Config.in.legacy: add missing help keyword
Commit ac1910713ce (efl: remove broken JP2K loader) added a legacy entry for
BR2_PACKAGE_EFL_JP2K, but forgot to add the 'help' keyword before the help
text, leading to confusing error messages from kconfig:
Config.in.legacy:482: syntax error
Config.in.legacy:481: unknown option "JP2K"
Config.in.legacy:482: unknown option "while"
Config.in.legacy:483: unknown option "JP2K"
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | Config.in.legacy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Config.in.legacy b/Config.in.legacy index 67f6e4e3a0..be4c9532de 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -478,6 +478,7 @@ comment "Legacy options removed in 2016.08" config BR2_PACKAGE_EFL_JP2K bool "libevas jp2k loader has been removed" select BR2_LEGACY + help JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc) while Buildroot only packages openjpeg 2.x. Therefore, the JP2K loader has been removed from EFL. |