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

Commit d84f9863 authored by Andy McFadden's avatar Andy McFadden
Browse files

Fix sim-eng build.

Different handling of libdl.  Added sim handling in one place, corrected
typo in sim handling in another.

Change-Id: I24153ad5b8873083225390ba6a751941d231d092
parent b5b37f3b
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -18,8 +18,13 @@ LOCAL_PRELINK_MODULE := false
LOCAL_STATIC_LIBRARIES += libmusicbundle

LOCAL_SHARED_LIBRARIES := \
     libcutils \
     libdl
     libcutils

ifeq ($(TARGET_SIMULATOR),true)
LOCAL_LDLIBS += -ldl
else
LOCAL_SHARED_LIBRARIES += libdl
endif

LOCAL_C_INCLUDES += \
	$(LOCAL_PATH)/Bundle \
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/soundfx
LOCAL_MODULE:= libvisualizer

ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true)
LOCAL_LDLIBS += -ldlS
LOCAL_LDLIBS += -ldl
endif

ifneq ($(TARGET_SIMULATOR),true)