mirror of
https://src.fedoraproject.org/rpms/mesa.git
synced 2024-11-28 11:06:25 +00:00
Nuke rpath from installed DRI drivers
This commit is contained in:
parent
2ad0c6e76f
commit
6fb4a533ef
1 changed files with 8 additions and 1 deletions
|
@ -50,7 +50,7 @@ Name: mesa
|
||||||
Summary: Mesa graphics libraries
|
Summary: Mesa graphics libraries
|
||||||
%global ver 19.0.1
|
%global ver 19.0.1
|
||||||
Version: %{lua:ver = string.gsub(rpm.expand("%{ver}"), "-", "~"); print(ver)}
|
Version: %{lua:ver = string.gsub(rpm.expand("%{ver}"), "-", "~"); print(ver)}
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://www.mesa3d.org
|
URL: http://www.mesa3d.org
|
||||||
|
|
||||||
|
@ -74,6 +74,7 @@ BuildRequires: meson >= 0.45
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: gettext
|
BuildRequires: gettext
|
||||||
|
BuildRequires: chrpath
|
||||||
|
|
||||||
%if 0%{?with_hardware}
|
%if 0%{?with_hardware}
|
||||||
BuildRequires: kernel-headers
|
BuildRequires: kernel-headers
|
||||||
|
@ -429,6 +430,9 @@ for i in libOSMesa*.so libGL.so ; do
|
||||||
done
|
done
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
# Fixed by aa7afe324c2092fb31f9498cb3eda47dda96e6f2, temporary workaround
|
||||||
|
chrpath -d -k %{buildroot}%{_libdir}/dri/*.so
|
||||||
|
|
||||||
%files filesystem
|
%files filesystem
|
||||||
%doc docs/Mesa-MLAA-License-Clarification-Email.txt
|
%doc docs/Mesa-MLAA-License-Clarification-Email.txt
|
||||||
%dir %{_libdir}/dri
|
%dir %{_libdir}/dri
|
||||||
|
@ -633,6 +637,9 @@ popd
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Apr 04 2019 Adam Jackson <ajax@redhat.com> 19.0.1-2
|
||||||
|
- Nuke rpath from installed DRI drivers
|
||||||
|
|
||||||
* Wed Mar 27 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 19.0.1-1
|
* Wed Mar 27 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 19.0.1-1
|
||||||
- Update to 19.0.1
|
- Update to 19.0.1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue