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
I commonly use tab completion to list Make targets. This has worked out well for a long time but at some point (didn't bisect yet), the completion started to take veeerrry long.
Although this might not be a big issue I suspect that the Makefile is doing too much work and may need some house cleaning.
The text was updated successfully, but these errors were encountered:
Speed up the Makefile by removing variable references from the release
targets. Now, the variables will only be (lazily) evaluated when they
are actually needed and not for each invocation of the Makefile which
has it down considerably.
Fixes: containers#4829
Signed-off-by: Valentin Rothberg <[email protected]>
I commonly use tab completion to list Make targets. This has worked out well for a long time but at some point (didn't bisect yet), the completion started to take veeerrry long.
Although this might not be a big issue I suspect that the Makefile is doing too much work and may need some house cleaning.
The text was updated successfully, but these errors were encountered: