From 565bffe71a2c8857de9f6b2497ba52b8537266bd Mon Sep 17 00:00:00 2001 From: Hussein Kasem Date: Fri, 26 Jul 2019 16:50:52 +0200 Subject: [PATCH] Remove unused var --- android/external/Makefile | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/android/external/Makefile b/android/external/Makefile index 800c5a2..7ed7ee9 100644 --- a/android/external/Makefile +++ b/android/external/Makefile @@ -31,20 +31,6 @@ LOCAL := $(DESTDIR)$(prefix) PATH := ${PATH}:$(NDK_TOOLCHAIN)/bin:$(LOCAL)/bin -#------------------------------------------------------------------------------# -# NDK toolchain integration -# TODO: cleanup. - -# Android now has 64-bit and 32-bit versions of the NDK for GNU/Linux. We -# assume that the build platform uses the appropriate version, otherwise the -# user building this will have to manually set NDK_PROCESSOR or NDK_TOOLCHAIN. -CPU := $(shell uname -m) -ifeq ($(CPU),x86_64) - NDK_PROCESSOR=x86_64 -else - NDK_PROCESSOR=x86 -endif - NDK_SYSROOT=$(ANDROID_NDK_HOME)/sysroot NDK_UNAME := $(shell uname -s | tr '[A-Z]' '[a-z]')