Drop support for undocumented %{!trace} builtin syntax

We can always add some other syntax to handle this if needed.
This commit is contained in:
Panu Matilainen 2020-11-04 11:10:29 +02:00
parent f955bc69d0
commit 413c85f131
1 changed files with 1 additions and 1 deletions

View File

@ -1311,7 +1311,7 @@ static void doLoad(MacroBuf mb, int chkexist, int negate,
static void doTrace(MacroBuf mb, int chkexist, int negate,
rpmMacroEntry me, const char * g, size_t gn)
{
mb->expand_trace = mb->macro_trace = (negate ? 0 : mb->depth);
mb->expand_trace = mb->macro_trace = mb->depth;
if (mb->depth == 1) {
print_macro_trace = mb->macro_trace;
print_expand_trace = mb->expand_trace;