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:
Panu Matilainen 2017-08-21 16:29:56 +03:00
parent 2986e7659d
commit 609adaa758
1 changed files with 1 additions and 1 deletions

View File

@ -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