diff options
author | Rob Landley <rob@landley.net> | 2020-05-17 06:37:10 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-05-17 06:37:10 -0500 |
commit | 3a0c562393e9f9daf7218fde175bde7e709056c4 (patch) | |
tree | 2a07ee400ccb29fad8c12d1b1d1fa9cf4e5b2bba /Makefile | |
parent | ed4f0dc53c5b670e24c98206f4cd6925b216897c (diff) | |
download | toybox-3a0c562393e9f9daf7218fde175bde7e709056c4.tar.gz |
Allow "make distclean" to fail gracefully when root_download exists.
(Don't delete it, warn it's there, but don't _not_ run next target.)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -70,7 +70,8 @@ clean:: # If singlemake was in generated/ "make clean; make test_ls" wouldn't work. distclean: clean root_clean - @rm -f toybox* .config* .singlemake root_download + @rm -f toybox* .config* .singlemake + @-rm root_download @echo removed .config tests: |