diff: tests/term/Mmakefile bug work-around

Fergus Henderson fjh at cs.mu.OZ.AU
Thu Feb 5 04:12:43 AEDT 1998


I guess you were right about this one, Zoltan ;-)

tests/term/Mmakefile:
	Use `$(FOO:%=%.bar)' instead of the more concise
	(though perhaps more cryptic) `$(FOO:=.bar)',
	since the latter does not work with some old buggy
	versions of GNU Make (in particuluar version 3.69).

Index: Mmakefile
===================================================================
RCS file: /home/mercury1/repository/tests/term/Mmakefile,v
retrieving revision 1.3
diff -u -u -r1.3 Mmakefile
--- Mmakefile	1998/01/13 15:03:59	1.3
+++ Mmakefile	1998/02/04 17:08:40
@@ -62,9 +62,9 @@
 	sum \
 	vangelder
 
-DEPENDS = $(PROGS:=.depend)
-TRANS_OPTS = $(PROGS:=.trans_opt)
-TRANS_OPT_RESS = $(PROGS:=.trans_opt_res)
+DEPENDS = $(PROGS:%=%.depend)
+TRANS_OPTS = $(PROGS:%=%.trans_opt)
+TRANS_OPT_RESS = $(PROGS:%=%.trans_opt_res)
 
 #-----------------------------------------------------------------------------#
 

-- 
Fergus Henderson <fjh at cs.mu.oz.au>   |  "I have always known that the pursuit
WWW: <http://www.cs.mu.oz.au/~fjh>   |  of excellence is a lethal habit"
PGP: finger fjh at 128.250.37.3         |     -- the last words of T. S. Garp.



More information about the developers mailing list