Fix pkg-config wrapper for armv7hl

This commit is contained in:
Neal Gompa 2020-10-15 07:56:38 -04:00
parent ac4bf07a65
commit 9a091fe4b9
2 changed files with 6 additions and 3 deletions

View File

@ -2,6 +2,6 @@
# Multilib safe wrapper for pkg-config to call correct platform-specific version of pkg-config
HOST_PLATFORM=$(rpm --eval "%{_host}")
TARGET_PLATFORM=$(rpm --eval '%{_target_platform}')
exec "@PKGCONF_BINDIR@/${HOST_PLATFORM}-pkg-config" "$@"
exec "@PKGCONF_BINDIR@/${TARGET_PLATFORM}-pkg-config" "$@"

View File

@ -17,7 +17,7 @@
Name: pkgconf
Version: 1.7.3
Release: 3%{?dist}
Release: 4%{?dist}
Summary: Package compiler and linker metadata toolkit
License: ISC
@ -202,6 +202,9 @@ rm -rf %{buildroot}%{_datadir}/aclocal
%endif
%changelog
* Thu Oct 15 2020 Neal Gompa <ngompa13@gmail.com> - 1.7.3-4
- Fix pkg-config wrapper for armv7hl
* Thu Oct 15 2020 Neal Gompa <ngompa13@gmail.com> - 1.7.3-3
- Make /usr/bin/pkg-config multilib safe