eolian: disable non-dependencied parsing for the time being

As 543902f2ba breaks build,
disable parsing with state as a parent for now, until the issue
is figured out.
This commit is contained in:
Daniel Kolesa 2018-04-18 21:16:04 +02:00
parent 15fcaaec69
commit 974fa323a1
1 changed files with 2 additions and 2 deletions

View File

@ -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)));
}