diff mbox

[libdrm,2/2] Revert "libdrm: intel/Android.mk: Filter libdrm_intel library requirements on x86/x86_64"

Message ID 20180320173652.5917-2-emil.l.velikov@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Emil Velikov March 20, 2018, 5:36 p.m. UTC
This reverts commit ed07718ae7bab596297abf210bb0c37c6dba58ed.

The commit added a guard since libpciaccess may be missing on some
setups. As of last commit there are no traces of the project, from
Android POV.

Hence, we can revert this workaround - which caused similar breakage to
the one it's trying to fix. This time in Mesa.

Cc: John Stultz <john.stultz@linaro.org>
Cc: Rob Herring <rob.herring@linaro.org>
Cc: John Stultz <john.stultz@linaro.org>
---
 intel/Android.mk | 2 --
 1 file changed, 2 deletions(-)

Comments

John Stultz March 26, 2018, 11:28 p.m. UTC | #1
On Tue, Mar 20, 2018 at 10:36 AM, Emil Velikov <emil.l.velikov@gmail.com> wrote:
> This reverts commit ed07718ae7bab596297abf210bb0c37c6dba58ed.
>
> The commit added a guard since libpciaccess may be missing on some
> setups. As of last commit there are no traces of the project, from
> Android POV.
>
> Hence, we can revert this workaround - which caused similar breakage to
> the one it's trying to fix. This time in Mesa.
>
> Cc: John Stultz <john.stultz@linaro.org>
> Cc: Rob Herring <rob.herring@linaro.org>
> Cc: John Stultz <john.stultz@linaro.org>

Acked-by: John Stultz <john.stultz@linaro.org>

Thanks so much for sending these out!
-john
diff mbox

Patch

diff --git a/intel/Android.mk b/intel/Android.mk
index dd881688..f45312dd 100644
--- a/intel/Android.mk
+++ b/intel/Android.mk
@@ -21,7 +21,6 @@ 
 # IN THE SOFTWARE.
 #
 
-ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
 LOCAL_PATH := $(call my-dir)
 include $(CLEAR_VARS)
 
@@ -37,4 +36,3 @@  LOCAL_SHARED_LIBRARIES := \
 
 include $(LIBDRM_COMMON_MK)
 include $(BUILD_SHARED_LIBRARY)
-endif