From aeb54c41749dae24cad6a117afc29f29eb994ab9 Mon Sep 17 00:00:00 2001 From: Edward Wang Date: Sun, 22 Jul 2012 23:56:19 -0400 Subject: [PATCH] Makefile: don't hardcode the ARM architecture MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafaël Carré --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index ca687a8f3..6022f8ea8 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,6 @@ # Sources and objects -ifeq ($(NO_NEON),) -ARCH = armeabi-v7a -else -ARCH = armeabi -endif +ARCH = $(ANDROID_ABI) SRC=vlc-android JAVA_SOURCES=$(SRC)/src/org/videolan/vlc/*.java -- GitLab