diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2019-01-18 08:41:23 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-01-26 08:13:55 -0500 |
commit | c1180aa254b45fdd9a4811bda19ed1a612114975 (patch) | |
tree | 432d3b098ca5d7ad99baaecbf2b5e71f357f360c /Makefile | |
parent | 0fd1359c5a9ba79a6bb408859e3376242a513ae2 (diff) | |
download | u-boot-c1180aa254b45fdd9a4811bda19ed1a612114975.zip u-boot-c1180aa254b45fdd9a4811bda19ed1a612114975.tar.gz u-boot-c1180aa254b45fdd9a4811bda19ed1a612114975.tar.bz2 |
Makefile: have "make distclean" remove CHANGELOG
Ensure that "make distclean" deletes an existing CHANGELOG file.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1795,7 +1795,7 @@ distclean: mrproper -o -name '.*.rej' -o -name '*%' -o -name 'core' \ -o -name '*.pyc' \) \ -type f -print | xargs rm -f - @rm -f boards.cfg + @rm -f boards.cfg CHANGELOG backup: F=`basename $(srctree)` ; cd .. ; \ |