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
In slow network environments, recursive variable assignments (`=`)
in the Makefile can cause shell commands, such as `wget` for
`LINUX_DATA`, to execute multiple times,
significantly slowing down the build process.
By using simple assignment (`:=`), `wget` is executed only once
during Makefile parsing. This reduces redundant network requests
and improves overall Makefile execution speed.
0 commit comments