Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 63729e3b authored by hmepas's avatar hmepas Committed by Steve Kondik
Browse files

Fix build on some linux machines



This adds -lpthread on linux for aapt and localize, which appear to be
needed on some linux distros.

Signed-off-by: default avatarJean-Baptiste Queru <jbq@google.com>
parent 0359278b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ LOCAL_STATIC_LIBRARIES := \
	libpng

ifeq ($(HOST_OS),linux)
LOCAL_LDLIBS += -lrt
LOCAL_LDLIBS += -lrt -lpthread
endif

# Statically link libz for MinGW (Win SDK under Linux),
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ LOCAL_STATIC_LIBRARIES := \
	libcutils
    
ifeq ($(HOST_OS),linux)
LOCAL_LDLIBS += -lrt
LOCAL_LDLIBS += -lrt -lpthread
endif