From 64b20bdabcc60fc64ed42c7998a858ccfa87b038 Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Thu, 8 Sep 2022 17:23:26 -0500 Subject: [PATCH] Don't use %__install > Macro forms of system executables SHOULD NOT be used except when there > is a need to allow the location of those executables to be configurable. > For example, rm should be used in preference to %{__rm}, but > %{__python3} is acceptable. -- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_macros --- python-mutagen.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-mutagen.spec b/python-mutagen.spec index 823735f..657c4c4 100644 --- a/python-mutagen.spec +++ b/python-mutagen.spec @@ -55,7 +55,7 @@ sphinx-build -b html -n docs docs/_build %install %py3_install -%{__install} -D -p -m 0644 man/*.1 %{buildroot}%{_mandir}/man1 +install -D -p -m 0644 man/*.1 %{buildroot}%{_mandir}/man1 # Remove hidden files rm -rf docs/_build/{.buildinfo,.doctrees}