You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parse only if necessary
Parsing before every macro expansion etc. is unnecessary and can cause performance issues, because parsing is a really slow operation.
Parse only after a context switch (necessary because all Specfile instances share a single global macro context) or if something that affects parsing has actually changed.
Related to rebase-helper/rebase-helper#910.
RELEASE NOTES BEGIN
Parsing the spec file by RPM is now performed only if really necessary, greatly improving performance in certain scenarios.
RELEASE NOTES END
Reviewed-by: Jiri Popelka
0 commit comments