Bump macro max recursion limit up
Fedora java packages are running into the old limit of sixteen nesting
levels (commit b3179e6de3
), bump it up
to 64. The old limit lasted almost twenty years, lets see how far this
gets us.
This commit is contained in:
parent
2986e7659d
commit
609adaa758
|
@ -110,7 +110,7 @@ typedef struct MacroBuf_s {
|
|||
rpmMacroContext mc;
|
||||
} * MacroBuf;
|
||||
|
||||
#define _MAX_MACRO_DEPTH 16
|
||||
#define _MAX_MACRO_DEPTH 64
|
||||
static int max_macro_depth = _MAX_MACRO_DEPTH;
|
||||
|
||||
#define _PRINT_MACRO_TRACE 0
|
||||
|
|
Loading…
Reference in New Issue