Drop support for undocumented %{!trace} builtin syntax
We can always add some other syntax to handle this if needed.
This commit is contained in:
parent
f955bc69d0
commit
413c85f131
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue