The option name BR2_PACKAGE_LIBTFDI_CPP obviously had a typo: it
should have been named BR2_PACKAGE_LIBFTDI_CPP, and add the necessary
Config.in.legacy handling.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
###############################################################################
comment "Legacy options removed in 2018.05"
+config BR2_PACKAGE_LIBTFDI_CPP
+ bool "libftdi C++ bindings option renamed"
+ select BR2_LEGACY
+ select BR2_PACKAGE_LIBFTDI_CPP
+ help
+ The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
+ BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
+ name.
+
config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
bool "jquery-ui-themes option black-tie renamed"
select BR2_LEGACY
if BR2_PACKAGE_LIBFTDI
-config BR2_PACKAGE_LIBTFDI_CPP
+config BR2_PACKAGE_LIBFTDI_CPP
bool "C++ bindings"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_WCHAR
LIBFTDI_CONF_OPTS = --without-examples
# configure detect it automaticaly so we need to force it
-ifeq ($(BR2_PACKAGE_LIBTFDI_CPP),y)
+ifeq ($(BR2_PACKAGE_LIBFTDI_CPP),y)
LIBFTDI_DEPENDENCIES += boost
LIBFTDI_CONF_OPTS += --enable-libftdipp
else