diff options
| author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-05-13 21:07:32 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2018-05-21 23:08:47 +0200 |
| commit | dc4e4aac03eab81228841749aeb19b9fcb9fedb5 (patch) | |
| tree | 5342fe980ae775a46cc57db5f2a62b6854c48d79 /package/libftdi | |
| parent | 94c146282fd74af73eddffb607d8e7300145dad5 (diff) | |
| download | buildroot-dc4e4aac03eab81228841749aeb19b9fcb9fedb5.tar.gz buildroot-dc4e4aac03eab81228841749aeb19b9fcb9fedb5.zip | |
libftdi: rename option to have proper prefix
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>
Diffstat (limited to 'package/libftdi')
| -rw-r--r-- | package/libftdi/Config.in | 2 | ||||
| -rw-r--r-- | package/libftdi/libftdi.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/libftdi/Config.in b/package/libftdi/Config.in index beb42d34c5..23dae1be1f 100644 --- a/package/libftdi/Config.in +++ b/package/libftdi/Config.in @@ -10,7 +10,7 @@ config BR2_PACKAGE_LIBFTDI 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 diff --git a/package/libftdi/libftdi.mk b/package/libftdi/libftdi.mk index c1952ac68b..cdd77c2e68 100644 --- a/package/libftdi/libftdi.mk +++ b/package/libftdi/libftdi.mk @@ -15,7 +15,7 @@ LIBFTDI_AUTORECONF = YES 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 |

