Strip rpath from jq binary

Related: rhbz#2008983
This commit is contained in:
Tomas Halman 2021-11-15 13:49:23 +01:00
parent ebc1d92bfc
commit d88867bb86

View File

@ -1,6 +1,6 @@
Name: jq Name: jq
Version: 1.6 Version: 1.6
Release: 11%{?dist} Release: 12%{?dist}
Summary: Command-line JSON processor Summary: Command-line JSON processor
License: MIT and ASL 2.0 and CC-BY and GPLv3 License: MIT and ASL 2.0 and CC-BY and GPLv3
@ -13,6 +13,7 @@ BuildRequires: gcc
BuildRequires: flex BuildRequires: flex
BuildRequires: bison BuildRequires: bison
BuildRequires: oniguruma-devel BuildRequires: oniguruma-devel
BuildRequires: chrpath
%ifarch %{valgrind_arches} %ifarch %{valgrind_arches}
BuildRequires: valgrind BuildRequires: valgrind
@ -71,6 +72,7 @@ make %{?_smp_mflags}
%install %install
make DESTDIR=%{buildroot} install make DESTDIR=%{buildroot} install
find %{buildroot} -name '*.la' -exec rm -f {} ';' find %{buildroot} -name '*.la' -exec rm -f {} ';'
chrpath --delete %{buildroot}/usr/bin/jq
%check %check
# Valgrind used, so restrict architectures for check # Valgrind used, so restrict architectures for check
@ -96,6 +98,10 @@ make check
%changelog %changelog
* Mon Nov 15 2021 Tomas Halman <thalman@redhat.com>
- Strip rpath from jq binary
Related: rhbz#2008983
* Wed Sep 29 2021 Davide Cavalca <dcavalca@centosproject.org> - 1.6-10 * Wed Sep 29 2021 Davide Cavalca <dcavalca@centosproject.org> - 1.6-10
- Backport PR#1752 to fix an integer logic issue - Backport PR#1752 to fix an integer logic issue
Resolves: rhbz#2008983 Resolves: rhbz#2008983