Skip to content

Commit

Permalink
va/Android.mk: Install libraries in /system instead
Browse files Browse the repository at this point in the history
* These libraries aren't exactly supposed to end up in /vendor, https://source.android.com/docs/core/architecture/vndk defined here. Only vendor specific items are supposed to be in /vendor.
  • Loading branch information
muhammad23012009 authored Jul 9, 2023
1 parent 0c6568e commit 63e2f37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions va/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

LOCAL_PATH:= $(call my-dir)

LIBVA_DRIVERS_PATH_32 := /vendor/lib/dri
LIBVA_DRIVERS_PATH_64 := /vendor/lib64/dri
LIBVA_DRIVERS_PATH_32 := /system/lib/dri
LIBVA_DRIVERS_PATH_64 := /system/lib64/dri

include $(CLEAR_VARS)

Expand Down

0 comments on commit 63e2f37

Please sign in to comment.