From: Paul Eggert Date: Mon, 22 Apr 2013 05:18:30 +0000 (-0700) Subject: * Makefile.in (bootstrap-clean): Remove stamp-h1 too. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~403 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=84fc48e57a1008b4c047ff30f3a6101b84130671;p=emacs.git * Makefile.in (bootstrap-clean): Remove stamp-h1 too. Without this fix, "make distclean" leaves stamp-h1 behind. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5164dc8ff8d..31764cad485 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2013-04-22 Paul Eggert + + * Makefile.in (bootstrap-clean): Remove stamp-h1 too. + Without this fix, "make distclean" leaves stamp-h1 behind. + 2013-04-20 Erik Charlebois * w32fns.c (w32_fullscreen_rect): New function to compute the diff --git a/src/Makefile.in b/src/Makefile.in index c6a067a1ade..cef58c55e68 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -532,7 +532,7 @@ clean: mostlyclean ## It should remove all files generated during a compilation/bootstrap, ## but not things like config.status or TAGS. bootstrap-clean: clean - rm -f epaths.h config.h config.stamp stamp-oldxmenu ../etc/DOC-* + rm -f epaths.h config.h config.stamp stamp-h1 stamp-oldxmenu ../etc/DOC-* if test -f ./.gdbinit; then \ mv ./.gdbinit ./.gdbinit.save; \ if test -f "$(srcdir)/.gdbinit"; then rm -f ./.gdbinit.save; \