From 576a63c7922815e49b963ac52c50aee2a38381d2 Mon Sep 17 00:00:00 2001 From: Hailiang Date: Mon, 24 Mar 2025 18:05:22 +0800 Subject: [PATCH] modify cp to /usr/bin/cp --- coreutils.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/coreutils.spec b/coreutils.spec index bb31c71..599f619 100644 --- a/coreutils.spec +++ b/coreutils.spec @@ -1,6 +1,6 @@ Name: coreutils Version: 9.6 -Release: 3 +Release: 4 License: GPL-3.0-or-later Summary: A set of basic GNU tools commonly used in shell scripts Url: https://www.gnu.org/software/coreutils/ @@ -80,8 +80,8 @@ sed -i 's/0.19.2/0.22.5/' bootstrap.conf configure.ac %build autoreconf -fi %ifarch sw_64 -cp -fv /usr/lib/rpm/%{_vendor}/config.guess build-aux/ -cp -fv /usr/lib/rpm/%{_vendor}/config.sub build-aux/ +/usr/bin/cp -fv /usr/lib/rpm/%{_vendor}/config.guess build-aux/ +/usr/bin/cp -fv /usr/lib/rpm/%{_vendor}/config.sub build-aux/ %endif if [ %user = root ]; then @@ -158,6 +158,9 @@ popd %{_mandir}/man*/* %changelog +* Mon Mar 24 2025 mahailiang - 9.6-4 +- modify cp to /usr/bin/cp + * Wed Mar 12 2025 mahailiang - 9.6-3 - fix sw_64 build error -- Gitee