From c2ee6fdbb712bcdf2a8db9cfeafcc24abd477f63 Mon Sep 17 00:00:00 2001 From: chen-jan Date: Wed, 12 Jan 2022 03:45:39 +0800 Subject: [PATCH] fix config.guess and config.sub path error (cherry picked from commit d354dfbaf652e79422f8acad325920b949ffaeb7) --- htslib.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/htslib.spec b/htslib.spec index 1225c84..534bb5c 100644 --- a/htslib.spec +++ b/htslib.spec @@ -1,6 +1,6 @@ Name: htslib Version: 1.10.2 -Release: 3 +Release: 4 Summary: C library for high-throughput sequencing data formats License: MIT and BSD URL: http://www.htslib.org @@ -36,6 +36,8 @@ the htsfile identifier tool, and the bgzip compression utility. %prep %setup -q -n %{name}-%{version} +install -p -m 0644 /usr/lib/rpm/%{_vendor}/config.guess config.guess +install -p -m 0644 /usr/lib/rpm/%{_vendor}/config.sub config.sub %build autoheader @@ -85,6 +87,9 @@ rm -rf %{buildroot}/%{_libdir}/libhts.a %{_mandir}/man1/tabix.1* %changelog +* Wed Jan 12 2022 Chen Chen - 1.10.2-4 +- fix config.guess and config.sub path error + * Wed Jun 16 2021 zhao yang - 1.10.2-3 - Add htslib-tools package -- Gitee