13 lines
410 B
Plaintext
13 lines
410 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Simple wrapper to tell pkgconf to behave as a platform-specific version of pkg-config
|
||
|
# Platform: @TARGET_PLATFORM@
|
||
|
|
||
|
export PKG_CONFIG_LIBDIR="${PKG_CONFIG_LIBDIR:-@PKGCONF_LIBDIRS@}"
|
||
|
export PKG_CONFIG_SYSTEM_LIBRARY_PATH="${PKG_CONFIG_SYSTEM_LIBRARY_PATH:-@PKGCONF_SYSLIBDIR@}"
|
||
|
export PKG_CONFIG_SYSTEM_INCLUDE_PATH="${PKG_CONFIG_SYSTEM_INCLUDE_PATH:-@PKGCONF_SYSINCDIR@}"
|
||
|
|
||
|
pkgconf $@
|
||
|
|
||
|
exit $?
|