]> git.dujemihanovic.xyz Git - u-boot.git/commit
Makefile: don't try to construct CLEAN_FILES based on config
authorThomas Hebb <tommyhebb@gmail.com>
Sun, 10 Nov 2019 16:25:08 +0000 (08:25 -0800)
committerTom Rini <trini@konsulko.com>
Tue, 3 Dec 2019 13:43:23 +0000 (08:43 -0500)
commit57297e605a06b69129da63b17f1b76fb53a84b3f
tree4d10717af48d465da621de20386d09c8477c41cb
parent6920f00c2c1b4c9799af0de7e398381a60664d15
Makefile: don't try to construct CLEAN_FILES based on config

All of the clean targets (clean, dist-clean, mrproper) are run without
loading a configuration. That means that any conditional modification of
CLEAN_FILES will either always apply or never apply and so shouldn't be
in a conditional in the first place.

Since CLEAN_FILES is allowed to list nonexistent files, just add
everything to it unconditionally to fix the issue.

Signed-off-by: Thomas Hebb <tommyhebb@gmail.com>
Makefile