redox/bin/i686-unknown-redox-pkg-config
2025-04-11 08:54:37 -06:00

13 lines
318 B
Bash
Executable File

#!/usr/bin/env bash
export PKG_CONFIG_SYSROOT_DIR="${COOKBOOK_SYSROOT}"
export PKG_CONFIG_LIBDIR="${PKG_CONFIG_SYSROOT_DIR}/lib/pkgconfig"
export PKG_CONFIG_PATH="${PKG_CONFIG_SYSROOT_DIR}/share/pkgconfig"
if [ -n "${COOKBOOK_PREFER_STATIC}" ]
then
exec pkg-config --static "$@"
else
exec pkg-config "$@"
fi