#!/bin/sh

# A wrapper for pkg-config to take the default SUSE sysroot into account

export PKG_CONFIG_PATH=
export PKG_CONFIG_LIBDIR=/usr/s390x-suse-linux/sys-root/usr/lib64/pkgconfig:/usr/s390x-suse-linux/sys-root/usr/share/pkgconfig
export PKG_CONFIG_SYSROOT_DIR=/usr/s390x-suse-linux/sys-root

exec pkg-config "$@"
