]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/Makefile.in (clean): Delete versioned pdmp files.
authorGlenn Morris <rgm@gnu.org>
Mon, 28 Jan 2019 20:55:57 +0000 (15:55 -0500)
committerGlenn Morris <rgm@gnu.org>
Mon, 28 Jan 2019 20:55:57 +0000 (15:55 -0500)
Else build number increments without limit even in clean builds.

src/Makefile.in

index 5890eac8c6367164df04c8a2ff352d1e1863baee..ee27db0811fb2ce0a8acab3d75fc5f71b20f5195 100644 (file)
@@ -690,7 +690,8 @@ mostlyclean:
        rm -f globals.h gl-stamp
        rm -f ./*.res ./*.tmp
 clean: mostlyclean
-       rm -f emacs-*.*.*[0-9]$(EXEEXT) emacs$(EXEEXT) $(DEPDIR)/*
+       rm -f emacs-*.*.*[0-9]$(EXEEXT) emacs-*.*.*[0-9].pdmp
+       rm -f emacs$(EXEEXT) $(DEPDIR)/*
 
 ## bootstrap-clean is used to clean up just before a bootstrap.
 ## It should remove all files generated during a compilation/bootstrap,