<<< Date Index >>>     <<< Thread Index >>>

For 1.5.10: avoid "touch" for timestap granularity



See "info Autoconf Automatic\ Remaking" for why this is useful.

Regards,
Ralf

        * Makefile.am, doc/Makefile.in: Avoid touch because for timestap
        granularity.

Index: Makefile.am
===================================================================
RCS file: /home/roessler/cvs/mutt/Makefile.am,v
retrieving revision 3.34
diff -u -r3.34 Makefile.am
--- Makefile.am 22 Mar 2005 19:58:15 -0000      3.34
+++ Makefile.am 4 Apr 2005 12:16:57 -0000
@@ -194,7 +194,7 @@
        -rm -f Muttrc stamp-doc-rc
        $(CPP) $(INCLUDES) $(DEFS) $(CPPFLAGS) -D_MAKEDOC -C \
                $(srcdir)/init.h | ./makedoc -c | cat Muttrc.head - > Muttrc
-       touch stamp-doc-rc
+       echo > stamp-doc-rc
 
 
 .PHONY: commit pclean check-security commit-real commit-changelog
Index: doc/Makefile.in
===================================================================
RCS file: /home/roessler/cvs/mutt/doc/Makefile.in,v
retrieving revision 3.7
diff -u -r3.7 Makefile.in
--- doc/Makefile.in     16 Mar 2005 07:01:59 -0000      3.7
+++ doc/Makefile.in     4 Apr 2005 12:16:57 -0000
@@ -162,11 +162,11 @@
        $(MAKEDOC_CPP) $(top_srcdir)/init.h | ../makedoc -m |       \
                cat $(srcdir)/muttrc.man.head - $(srcdir)/muttrc.man.tail\
                > muttrc.man
-       touch stamp-doc-man
+       echo > stamp-doc-man
 
 manual.sgml stamp-doc-sgml: ../makedoc$(EXEEXT) $(top_srcdir)/init.h 
manual.sgml.head manual.sgml.tail $(top_srcdir)/VERSION
        ( sed -e "s/$(at)VERSION$(at)/`cat $(top_srcdir)/VERSION`/" 
$(srcdir)/manual.sgml.head ;\
          $(MAKEDOC_CPP) $(top_srcdir)/init.h | ../makedoc -s ) |      \
                cat - $(srcdir)/manual.sgml.tail > manual.sgml
-       touch stamp-doc-sgml
+       echo > stamp-doc-sgml