From 25f49565dbc01d7bf991751ac4badd4b3c97fdae 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 9bfa64e..60b567b 100644 --- a/python-mutagen.spec +++ b/python-mutagen.spec @@ -66,7 +66,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}