Commit f8b26b3
committed
Improve the Makefile speed by simple assignment
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.1 parent 3f64d3e commit f8b26b3
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
128 | 128 | | |
129 | 129 | | |
130 | 130 | | |
131 | | - | |
| 131 | + | |
132 | 132 | | |
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
136 | | - | |
| 136 | + | |
137 | 137 | | |
138 | 138 | | |
139 | 139 | | |
| |||
0 commit comments