mirror of
git://slackware.nl/current.git
synced 2024-12-30 10:24:23 +01:00
8 lines
204 B
Bash
8 lines
204 B
Bash
|
#!/bin/sh
|
||
|
if [ ! "$PKG_CONFIG_PATH" = "" ]; then
|
||
|
PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig
|
||
|
else
|
||
|
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig
|
||
|
fi
|
||
|
export PKG_CONFIG_PATH
|