mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
13 lines
312 B
Bash
Executable File
13 lines
312 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_DYNAMIC}" ]
|
|
then
|
|
exec pkg-config "$@"
|
|
else
|
|
exec pkg-config --static "$@"
|
|
fi
|