libftdi: fix typo in variable name
authorPeter Korsgaard <peter@korsgaard.com>
Tue, 7 Feb 2017 08:55:27 +0000 (09:55 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 7 Feb 2017 08:55:27 +0000 (09:55 +0100)
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>
package/libftdi/libftdi.mk

index 2364c4625f2e3955360703d789f8314b60eb323a..c1952ac68befb573ee7815b7211528cc9dbd213d 100644 (file)
@@ -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))