Upgrade to 1.1.1

Add missing directories to pkgconf-pkg-config
This commit is contained in:
Neal Gompa 2017-01-07 16:48:31 -05:00
parent fea1ae6425
commit 68f2eebd34

View File

@ -6,8 +6,8 @@
%endif
Name: pkgconf
Version: 1.1.0
Release: 3%{?dist}
Version: 1.1.1
Release: 1%{?dist}
Summary: Package compiler and linker metadata toolkit
License: ISC
@ -106,6 +106,8 @@ find %{buildroot} -name '*.la' -print -delete
%if %{with pkgconfig_compat}
ln -sf pkgconf %{buildroot}%{_bindir}/pkg-config
ln -sf pkgconf %{buildroot}%{_bindir}/%{_target_platform}-pkg-config
mkdir -p %{buildroot}%{_libdir}/pkgconfig
mkdir -p %{buildroot}%{_datadir}/pkgconfig
%endif
# If we're not providing pkgconfig override & compat
@ -140,9 +142,15 @@ rm -rf %{buildroot}%{_datadir}/aclocal
%files pkg-config
%{_bindir}/pkg-config
%{_bindir}/%{_target_platform}-pkg-config
%dir %{_libdir}/pkgconfig
%dir %{_datadir}/pkgconfig
%endif
%changelog
* Sat Jan 07 2017 Neal Gompa <ngompa13@gmail.com> - 1.1.1-1
- Upgrade to 1.1.1
- Add missing directories to pkgconf-pkg-config
* Sun Jan 01 2017 Neal Gompa <ngompa13@gmail.com> - 1.1.0-3
- Fix up spec per package review (#1409332)