From cb995279b20ebccfdb9438ffdda37e8fd10da3b7 Mon Sep 17 00:00:00 2001 From: Thomas Klaehn Date: Sat, 13 Jul 2019 22:05:35 +0200 Subject: [PATCH] Workaround: In alpine libftdi is named libftdi1 --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index f76d4f5..969f432 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,13 @@ INCLUDES := inc #Alpine Linux ftdi include path INCLUDES += /usr/include/libftdi1 + +DISTRO=$(cat /etc/issue | grep Alpine) +ifeq "$(findstring Alpine,$(DISTRO))" "" LIBS := ftdi +else +LIBS := ftdi1 +endif LD_FLAGS := C_FLAGS := -O0 -g