From 84c6645220dfc570c332967e419e9e4abdff82b9 Mon Sep 17 00:00:00 2001 From: Nathan Freitas Date: Wed, 15 Apr 2015 10:15:38 -0400 Subject: [PATCH] fixing flag typo --- external/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/Makefile b/external/Makefile index c7f5269b..b9cd7352 100644 --- a/external/Makefile +++ b/external/Makefile @@ -52,7 +52,7 @@ STRIP := $(NDK_TOOLCHAIN_BASE)/bin/$(HOST)-strip \ --strip-unneeded -R .note -R .comment --strip-debug # PIEFLAGS for SDK 16/Android L must be set to -fPIE -pie, but can override for earlier targets -PIEFLAGS =? -fPIE -pie +PIEFLAGS ?= -fPIE -pie CFLAGS = -DANDROID $(TARGET_CFLAGS) $(PIEFLAGS) LDFLAGS = -llog $(TARGET_LDFLAGS) $(PIEFLAGS)