From 35be6478938add31f100c74bf28bfbbb98894ebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E6=81=AC?= Date: Mon, 16 Dec 2024 16:23:44 +0800 Subject: [PATCH] fix build warnings: patchN is deprecated, use patch N (or %patch -P N) --- imake.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/imake.spec b/imake.spec index 2520818..239b163 100644 --- a/imake.spec +++ b/imake.spec @@ -1,7 +1,7 @@ Summary: imake source code configuration and build system Name: imake Version: 1.0.9 -Release: 1 +Release: 2 License: MIT URL: http://www.x.org @@ -35,11 +35,11 @@ Brunhoff at Tektronix. %setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4 pushd xorg-cf-files-1.0.8 -%patch1 -p1 -b .ar +%patch 1 -p1 -b .ar popd pushd %{name}-%{version} -%patch2 -p1 -b .abort +%patch 2 -p1 -b .abort popd %build @@ -77,6 +77,9 @@ popd %{_mandir}/man1/* %changelog +* Mon Dec 16 2024 litian - 1.0.9-2 +- fix %patchN is deprecated warning + * Fri Jul 21 2023 houlifei - 1.0.9-1 - Upgrade to version 1.0.9 -- Gitee