8 lines
219 B
Bash
8 lines
219 B
Bash
#!/bin/sh
|
|
|
|
# Multilib safe wrapper for pkg-config to call correct platform-specific version of pkg-config
|
|
|
|
TARGET_PLATFORM=$(rpm --eval '%{_target_platform}')
|
|
|
|
exec "@PKGCONF_BINDIR@/${TARGET_PLATFORM}-pkg-config" "$@"
|