pkgconf.sh 315 B

123456789101112
  1. # Set PKG_CONFIG and PKG_CONFIG_PATH if unset
  2. test -n "${PKG_CONFIG+$PKG_CONFIG}" || \
  3. PKG_CONFIG=/usr/bin/pkgconf
  4. test -n "${PKG_CONFIG_PATH+$PKG_CONFIG_PATH}" || \
  5. PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
  6. export PKG_CONFIG PKG_CONFIG_PATH