diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-04-04 00:31:03 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-04-04 00:32:46 +0200 |
commit | 6264f45095de0953745b447598ab44dce5e7a322 (patch) | |
tree | 24d6ee1b7d53ab7f29a1ed867e4cdf9420e231fd /Makefile.in | |
parent | e80657059aa21aaf24beebb99abc842b8ee0ca80 (diff) |
buildsys: fix realclean
For anything but (toplevel) clean, CLEAN_%, we need .config
Otherwise realclean would leave stuff behind that was not intended to
survive.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 7e4582a0d..3d3ba3d8f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -498,7 +498,7 @@ clean: include_clean $(Q)$(RM) $(top_builddir)extra/scripts/unifdef $(Q)$(RM) -r $(LOCAL_INSTALL_PATH) -distclean: clean +distclean: realclean -find . \( -name core -o -name \*.orig -o -name \*~ -o -name .\*.dep \) -exec $(RM) {} \; $(RM) $(top_builddir).config $(top_builddir).config.old $(top_builddir).config.cmd $(Q)$(RM) $(top_builddir)extra/locale/*.tgz |