[m-rev.] for review: overfull hboxes

Fergus Henderson fjh at cs.mu.OZ.AU
Sat Jun 2 01:00:36 AEST 2001


On 01-Jun-2001, Zoltan Somogyi <zs at cs.mu.OZ.AU> wrote:
> doc/Mmakefile:
> 	Redirect the standard output of the commands to make .dvi files to a
> 	separate file. In effect, the complaints about overfull hboxes are
> 	shunted to this file. Complaints about missing Up fields are not
> 	affected, since they are on standard error.
> 
> Zoltan.
> 
> cvs diff: Diffing .
> Index: Mmakefile
> ===================================================================
> RCS file: /home/mercury1/repository/mercury/doc/Mmakefile,v
> retrieving revision 1.24
> diff -u -b -r1.24 Mmakefile
> --- Mmakefile	2001/05/31 06:00:00	1.24
> +++ Mmakefile	2001/06/01 08:45:31
> @@ -53,7 +53,7 @@
>  .SUFFIXES: .texi .dvi .ps .text
>  
>  %.dvi: %.texi
> -	$(TEXI2DVI) $<
> +	$(TEXI2DVI) $< > `basename $< .texi`.dvi_log

I suggest using "$*" rather than "basename":

	%.dvi: %.texi
		$(TEXI2DVI) $< > $*.dvi_log

Otherwise, that looks fine.

-- 
Fergus Henderson <fjh at cs.mu.oz.au>  |  "I have always known that the pursuit
                                    |  of excellence is a lethal habit"
WWW: <http://www.cs.mu.oz.au/~fjh>  |     -- the last words of T. S. Garp.
--------------------------------------------------------------------------
mercury-reviews mailing list
post:  mercury-reviews at cs.mu.oz.au
administrative address: owner-mercury-reviews at cs.mu.oz.au
unsubscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: unsubscribe
subscribe:   Address: mercury-reviews-request at cs.mu.oz.au Message: subscribe
--------------------------------------------------------------------------



More information about the reviews mailing list