diff options
author | Simon Glass <sjg@chromium.org> | 2021-07-02 12:36:13 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-28 14:27:54 -0400 |
commit | c72c7d9db5ff9e5e88de6d23a2ec0a745707f6fe (patch) | |
tree | 41cbafdf5cc475822ef25bcd58b7f5350546b833 /Makefile | |
parent | 22ecb12132a2de80a08654f139ff978176034c38 (diff) | |
download | u-boot-c72c7d9db5ff9e5e88de6d23a2ec0a745707f6fe.zip u-boot-c72c7d9db5ff9e5e88de6d23a2ec0a745707f6fe.tar.gz u-boot-c72c7d9db5ff9e5e88de6d23a2ec0a745707f6fe.tar.bz2 |
Makefile: Drop include/asm directory as well as symlink
At present when using 'make mrproper' on an out-of-tree build, a warning
is shown about include/asm being a directory. With old versions of U-Boot
it is a file, but more recently it has become a directory.
Remove this directory first, since that covers both cases.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2100,7 +2100,7 @@ CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h tools/version.h \ # Directories & files removed with 'make mrproper' MRPROPER_DIRS += include/config include/generated spl tpl \ - .tmp_objdiff doc/output + .tmp_objdiff doc/output include/asm # Remove include/asm symlink created by U-Boot before v2014.01 MRPROPER_FILES += .config .config.old include/autoconf.mk* include/config.h \ |