From 73b7fc36fd78bc4577dbce59975eb118364dd782 Mon Sep 17 00:00:00 2001 From: "sliver.chen" Date: Mon, 8 Jan 2018 14:04:13 +0800 Subject: [PATCH] [cmake]: fix cmake syntax error about macro HAVE_DRM It is obvious,just a clerical error. Change-Id: Iee22c422ff1786d513afd4f8b3d7fee502a9c89b Signed-off-by: sliver.chen --- build/android/aarch64/make-Android.bash | 2 +- build/android/arm/make-Android.bash | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/android/aarch64/make-Android.bash b/build/android/aarch64/make-Android.bash index cc761c09..7321b9cf 100755 --- a/build/android/aarch64/make-Android.bash +++ b/build/android/aarch64/make-Android.bash @@ -19,7 +19,7 @@ cmake -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake \ -DANDROID_NATIVE_API_LEVEL=android-21 \ -DANDROID_STL=system \ -DRKPLATFORM=ON \ - -DHAVE_DRM \ + -DHAVE_DRM=ON \ ../../../ # ---------------------------------------------------------------------------- diff --git a/build/android/arm/make-Android.bash b/build/android/arm/make-Android.bash index 4567fb9c..ce249e66 100755 --- a/build/android/arm/make-Android.bash +++ b/build/android/arm/make-Android.bash @@ -19,7 +19,7 @@ cmake -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake \ -DANDROID_NATIVE_API_LEVEL=android-21 \ -DANDROID_STL=system \ -DRKPLATFORM=ON \ - -DHAVE_DRM \ + -DHAVE_DRM=ON \ ../../../ # ----------------------------------------------------------------------------