summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Martin <s.martin49@gmail.com>2015-03-17 18:36:35 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-03-20 23:29:49 +0100
commit772dbcd797879f56919d0cd026c2aa882af21f71 (patch)
tree5c9bb136729f8acf6b9f8454d1c4769b78821c78
parent92e8d431f5917a05b5023cf65b43c6f07efab867 (diff)
downloadbuildroot-772dbcd797879f56919d0cd026c2aa882af21f71.tar.gz
buildroot-772dbcd797879f56919d0cd026c2aa882af21f71.zip
package/avrdude: optionally depends on libftdi or libftdi1
Avrdude supports both libftdi and libftdi1. Because libftdi is already an optional dependency, this patch adds libftdi1 as optional dependency as well, but privileges libftdi1 over libftdi (accdording to what is done in avrdude's configure script). Signed-off-by: Samuel Martin <s.martin49@gmail.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/avrdude/avrdude.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/package/avrdude/avrdude.mk b/package/avrdude/avrdude.mk
index 03d6490de9..181189345c 100644
--- a/package/avrdude/avrdude.mk
+++ b/package/avrdude/avrdude.mk
@@ -17,7 +17,9 @@ AVRDUDE_DEPENDENCIES = elfutils libusb libusb-compat ncurses \
AVRDUDE_LICENSE = GPLv2+
AVRDUDE_LICENSE_FILES = avrdude/COPYING
-ifeq ($(BR2_PACKAGE_LIBFTDI),y)
+ifeq ($(BR2_PACKAGE_LIBFTDI1),y)
+AVRDUDE_DEPENDENCIES += libftdi1
+else ifeq ($(BR2_PACKAGE_LIBFTDI),y)
AVRDUDE_DEPENDENCIES += libftdi
endif
OpenPOWER on IntegriCloud