summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2019-09-12 20:02:18 +0000
committerAdam Jackson <ajax@nwnk.net>2019-09-13 19:11:10 +0000
commit3976c86e70b25cb227ae80f680a2fe65a614e5f8 (patch)
treeb1e4d492ef0edaae90f9451609f75245a7fa03a8
parent6ddfd37c7e5a132910d748429cc89289e97f1b38 (diff)
downloadmesa-3976c86e70b25cb227ae80f680a2fe65a614e5f8.tar.gz
Android.mk: Fix missing \ from recent llvm change
Building w/ AOSP, I was hitting the following error: external/mesa3d/src/amd/Android.common.mk:95: error: missing separator. Which was due to the changes to mesa-build-with-llvm missing a line continuation. Fixes: 96b592696f13 Signed-off-by: John Stultz <john.stultz@linaro.org>
-rw-r--r--Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index df379a40528..16e385e162b 100644
--- a/Android.mk
+++ b/Android.mk
@@ -97,7 +97,7 @@ endif
define mesa-build-with-llvm
$(if $(filter $(MESA_ANDROID_MAJOR_VERSION), 4 5 6 7), \
$(warning Unsupported LLVM version in Android $(MESA_ANDROID_MAJOR_VERSION)),) \
- $(eval LOCAL_CFLAGS += -DLLVM_AVAILABLE -DMESA_LLVM_VERSION_STRING=\"3.9\")
+ $(eval LOCAL_CFLAGS += -DLLVM_AVAILABLE -DMESA_LLVM_VERSION_STRING=\"3.9\") \
$(eval LOCAL_SHARED_LIBRARIES += libLLVM)
endef