diff options
author | Emil Velikov <[email protected]> | 2015-03-27 11:40:42 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-04-22 14:23:28 +0100 |
commit | 86919352e3da1c80409fdcb67c36f29a9687b7a9 (patch) | |
tree | d0b0a91b7bf114572dc9b7a48b378c69d3f10b4d /src/egl | |
parent | 413bc0a618d39873336cbfaf8fb5e43217f66ccf (diff) |
android: use LOCAL_SHARED_LIBRARIES over TARGET_OUT_HEADERS
... to manage the LIBDRM*_CFLAGS. The former is the recommended approach
by the Android build system developers while the latter has been
depreciated for quite some time.
Cc: "10.4 10.5" <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/drivers/dri2/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/drivers/dri2/Android.mk b/src/egl/drivers/dri2/Android.mk index f91a90336bf..d5ac8ee34cb 100644 --- a/src/egl/drivers/dri2/Android.mk +++ b/src/egl/drivers/dri2/Android.mk @@ -40,12 +40,12 @@ LOCAL_C_INCLUDES := \ $(MESA_TOP)/src/mapi \ $(MESA_TOP)/src/egl/main \ $(MESA_TOP)/src/loader \ - $(TARGET_OUT_HEADERS)/libdrm \ $(DRM_GRALLOC_TOP) LOCAL_STATIC_LIBRARIES := \ libmesa_loader +LOCAL_SHARED_LIBRARIES := libdrm LOCAL_MODULE := libmesa_egl_dri2 include $(MESA_COMMON_MK) |