046f091e0d
This commits needs a MAJOR audit as I oftentimes just guessed which of `$hostOffset`, `$targetOffset`, or a fixed offset should be used.
10 lines
257 B
Bash
10 lines
257 B
Bash
addGstreamer1LibPath () {
|
|
if test -d "$1/lib/gstreamer-1.0"
|
|
then
|
|
export GST_PLUGIN_SYSTEM_PATH_1_0="${GST_PLUGIN_SYSTEM_PATH_1_0}${GST_PLUGIN_SYSTEM_PATH_1_0:+:}$1/lib/gstreamer-1.0"
|
|
fi
|
|
}
|
|
|
|
addEnvHooks "$hostOffset" addGstreamer1LibPath
|
|
|