commit | 57297e605a06b69129da63b17f1b76fb53a84b3f | [log] [tgz] |
---|---|---|
author | Thomas Hebb <tommyhebb@gmail.com> | Sun Nov 10 08:25:08 2019 -0800 |
committer | Tom Rini <trini@konsulko.com> | Tue Dec 03 08:43:23 2019 -0500 |
tree | 4d10717af48d465da621de20386d09c8477c41cb | |
parent | 6920f00c2c1b4c9799af0de7e398381a60664d15 [diff] |
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>