blob: 7aed33a78baaae23ff4f0e90e7ad29dc4f728784 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# profile.d script for SBo flac-opt build, WTFPL, B. Watson.
# Note: DO NOT chmod +x this file. It exists to be sourced only when
# actually needed, and can cause problems when not needed.
Ptmp=@LIBDIR@/pkgconfig
if [ -z "$PKG_CONFIG_PATH" ]; then
PKG_CONFIG_PATH="$Ptmp"
else
PKG_CONFIG_PATH="$Ptmp:$PKG_CONFIG_PATH"
fi
export PKG_CONFIG_PATH
unset Ptmp
|