summaryrefslogtreecommitdiff
path: root/package/libftdi
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2017-02-07 09:55:27 +0100
committerPeter Korsgaard <peter@korsgaard.com>2017-02-07 09:55:27 +0100
commit9d8cf78f7240560a9262d8c2b31fd9db158fd29f (patch)
tree8326853d01bbe6d08ec41ee3968c4850a9294c77 /package/libftdi
parentc10d6b71129a231538cc09903ae478f700113e2f (diff)
libftdi: fix typo in variable name
As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libftdi')
-rw-r--r--package/libftdi/libftdi.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/libftdi/libftdi.mk b/package/libftdi/libftdi.mk
index 2364c4625..c1952ac68 100644
--- a/package/libftdi/libftdi.mk
+++ b/package/libftdi/libftdi.mk
@@ -12,14 +12,14 @@ LIBFTDI_INSTALL_STAGING = YES
LIBFTDI_CONFIG_SCRIPTS = libftdi-config
LIBFTDI_AUTORECONF = YES
-LIBFDTI_CONF_OPTS = --without-examples
+LIBFTDI_CONF_OPTS = --without-examples
# configure detect it automaticaly so we need to force it
ifeq ($(BR2_PACKAGE_LIBTFDI_CPP),y)
LIBFTDI_DEPENDENCIES += boost
-LIBFDTI_CONF_OPTS += --enable-libftdipp
+LIBFTDI_CONF_OPTS += --enable-libftdipp
else
-LIBFDTI_CONF_OPTS += --disable-libftdipp
+LIBFTDI_CONF_OPTS += --disable-libftdipp
endif
$(eval $(autotools-package))