mirror of
https://github.com/libretro/RetroArch
synced 2025-04-16 08:43:10 +00:00
[ANDROID] fix compile on windows
broken make in android toolkit can't have paths with colons in LOCAL_SRC_FILES, just assume we're getting called from the right directory
This commit is contained in:
parent
e6e427fcd8
commit
57677f8d2a
@ -3,7 +3,7 @@ include $(CLEAR_VARS)
|
|||||||
|
|
||||||
LOCAL_ARM_MODE := arm
|
LOCAL_ARM_MODE := arm
|
||||||
LOCAL_MODULE := retroarch-jni
|
LOCAL_MODULE := retroarch-jni
|
||||||
RARCH_DIR := $(LOCAL_PATH)/../../..
|
RARCH_DIR := ../../..
|
||||||
LOCAL_CFLAGS += -std=gnu99 -Wall -DHAVE_LOGGER -DRARCH_DUMMY_LOG -DHAVE_ZLIB -DHAVE_MMAP -I$(RARCH_DIR)
|
LOCAL_CFLAGS += -std=gnu99 -Wall -DHAVE_LOGGER -DRARCH_DUMMY_LOG -DHAVE_ZLIB -DHAVE_MMAP -I$(RARCH_DIR)
|
||||||
LOCAL_LDLIBS := -llog -lz
|
LOCAL_LDLIBS := -llog -lz
|
||||||
LOCAL_SRC_FILES := apk-extract/apk-extract.c $(RARCH_DIR)/file_extract.c $(RARCH_DIR)/file_path.c $(RARCH_DIR)/compat/compat.c
|
LOCAL_SRC_FILES := apk-extract/apk-extract.c $(RARCH_DIR)/file_extract.c $(RARCH_DIR)/file_path.c $(RARCH_DIR)/compat/compat.c
|
||||||
|
Loading…
x
Reference in New Issue
Block a user