audio: hal: dont specify absolute lib path in LE

-Absolute path is only needed  when lib is not present in default
 path (/usr/lib or /usr/lib64) but as LE uses default path,
 absolute path is not needed.
-This also avoid specifying two different path for 32bit and 64bit
 architecture.

Change-Id: I55c6d9edaebe374f9b2ad16ebe20fd4e9d0aef08
diff --git a/hal/audio_extn/gef.c b/hal/audio_extn/gef.c
index 0781f4c..ef6b153 100644
--- a/hal/audio_extn/gef.c
+++ b/hal/audio_extn/gef.c
@@ -56,7 +56,7 @@
 #ifdef AUDIO_GENERIC_EFFECT_FRAMEWORK_ENABLED
 
 #if LINUX_ENABLED
-#define GEF_LIBRARY "/usr/lib/libqtigef.so"
+#define GEF_LIBRARY "libqtigef.so"
 #else
 #define GEF_LIBRARY "/vendor/lib/libqtigef.so"
 #endif