q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=974fa323a180cf049426661dcff1c3855c0bbc5c
commit 974fa323a180cf049426661dcff1c3855c0bbc5c Author: Daniel Kolesa <[email protected]> Date: Wed Apr 18 21:16:04 2018 +0200 eolian: disable non-dependencied parsing for the time being As 543902f2ba13b69b052eb21a4a36324d96f5eeba breaks build, disable parsing with state as a parent for now, until the issue is figured out. --- src/lib/eolian/eolian_database.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eolian/eolian_database.c b/src/lib/eolian/eolian_database.c index 8093230ac8..f595878222 100644 --- a/src/lib/eolian/eolian_database.c +++ b/src/lib/eolian/eolian_database.c @@ -890,8 +890,8 @@ _defer_hash_cb(const Eina_Hash *hash EINA_UNUSED, const void *key, Defer_Data *d = fdata; Eolian_Unit *parent = d->parent; /* not a dependency; parse standalone */ - if ((size_t)data <= 1) - parent = &parent->state->staging.unit; + /*if ((size_t)data <= 1) + parent = &parent->state->staging.unit;*/ Eolian_Unit *pdep = _eolian_file_parse_nodep(parent, key); return (d->succ = (pdep && _parse_deferred(pdep))); } --
