Allow split system/vendor image configuration
Switch hardcoded system/vendor path to $(TARGET_COPY_OUT_VENDOR). For
direct loading of files in code, switch from /system/vendor to
/vendor - relying on /vendor symlink for compatibility.
Change-Id: I96960f977f1ab74f266aa7a7937c760b6675ca54
diff --git a/hal/audio_extn/gef.c b/hal/audio_extn/gef.c
index 6f001c9..d5e090a 100644
--- a/hal/audio_extn/gef.c
+++ b/hal/audio_extn/gef.c
@@ -52,7 +52,7 @@
#if LINUX_ENABLED
#define GEF_LIBRARY "/usr/lib/libqtigef.so"
#else
-#define GEF_LIBRARY "/system/vendor/lib/libqtigef.so"
+#define GEF_LIBRARY "/vendor/lib/libqtigef.so"
#endif
typedef void* (*gef_init_t)(void*);