From fe2ad7f844d0381251aa2e91a26e06d849df22b5 Mon Sep 17 00:00:00 2001 From: Werner LEMBERG Date: Sun, 5 Mar 2000 18:05:34 +0000 Subject: [PATCH] * src/roff/troff/div.cc (macro_diversion::output, top_level_diversion::output): Fixing an incompatibility with original troff: x'0' updates the .a register also. Thanks to for pointing this out. * Makefile.in: Create Makefile.dep if necessary before calling the submake process to avoid warning about nonexistent file. --- ChangeLog | 11 +++++++---- Makefile.in | 3 +++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index cfc4b1e7..4d31d867 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,14 @@ 2000-03-05 Werner LEMBERG - * div.cc (macro_diversion::output, top_level_diversion::output): - Fixing an incompatibility with original troff: \x'0' updates the - .a register also. Thanks to for pointing - this out. + * src/roff/troff/div.cc (macro_diversion::output, + top_level_diversion::output): Fixing an incompatibility with + original troff: \x'0' updates the .a register also. Thanks to + for pointing this out. * doc/groff.texinfo: Document it. + * Makefile.in: Create Makefile.dep if necessary before calling the + submake process to avoid warning about nonexistent file. + 2000-03-04 Werner LEMBERG * tmac/troffrc: Add tmac.lbp. diff --git a/Makefile.in b/Makefile.in index 411d2c0f..968435bb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -367,6 +367,7 @@ $(LIBDIRS): FORCE fi; \ test -d $@ || $(mkinstalldirs) $@; \ cd $@; \ + test -f Makefile.dep || touch Makefile.dep; \ $(MAKE) $(MDEFINES) srcdir=$$srcdir VPATH=$$srcdir \ -f $(top_srcdir)/Makefile.comm \ -f $$srcdir/Makefile.sub \ @@ -380,6 +381,7 @@ $(CPROGDIRS): FORCE fi; \ test -d $@ || $(mkinstalldirs) $@; \ cd $@; \ + test -f Makefile.dep || touch Makefile.dep; \ $(MAKE) $(MDEFINES) srcdir=$$srcdir VPATH=$$srcdir \ -f $(top_srcdir)/Makefile.comm \ -f $$srcdir/Makefile.sub \ @@ -393,6 +395,7 @@ $(CCPROGDIRS): FORCE fi; \ test -d $@ || $(mkinstalldirs) $@; \ cd $@; \ + test -f Makefile.dep || touch Makefile.dep; \ $(MAKE) $(MDEFINES) srcdir=$$srcdir VPATH=$$srcdir \ -f $(top_srcdir)/Makefile.comm \ -f $$srcdir/Makefile.sub \ -- 2.11.4.GIT