-
Notifications
You must be signed in to change notification settings - Fork 2
PF14
ᴀɴᴛᴏɴ ɴᴏᴠᴏᴊɪʟᴏᴠ edited this page Jun 23, 2024
·
4 revisions
Checks all spec data for useless binaries macroses.
%install
%{__rm} -rf %{buildroot}
%install
rm -rf %{buildroot}
There are some predefined macroses with paths to binaries (like make
, rm
, cp
…). 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.