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
Our makefiles contain ... = $(shell ...) and ... ?= $(shell ...) in several places, which are 'lazy', meaning the shell command is executed each time the variable is used.
We should consider replacing the lazy sets with immediate sets (:=), and for the 'lazy set if absent' cases consider whether it's worth adding additional logic.
The text was updated successfully, but these errors were encountered:
Our makefiles contain
... = $(shell ...)
and... ?= $(shell ...)
in several places, which are 'lazy', meaning the shell command is executed each time the variable is used.We should consider replacing the lazy sets with immediate sets (
:=
), and for the 'lazy set if absent' cases consider whether it's worth adding additional logic.The text was updated successfully, but these errors were encountered: