Skip to content
Snippets Groups Projects
x86_64-unknown-redox-pkg-config 238 B
#!/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"

exec pkg-config --static "$@"