trivial diff: clpr/Mmakefile variable name error

Fergus Henderson fjh at cs.mu.OZ.AU
Thu Apr 2 22:48:21 AEST 1998


extras/clpr/clpr/Mmakefile:
	Fix a bug detected by `--warn-undefined-variables':
	in the rule for `mmake clean', `$(PIC_OBJECTS)'
	should have been `$(PIC_OBJS)'.

Index: Mmakefile
===================================================================
RCS file: /home/mercury1/repository/clpr/clpr/Mmakefile,v
retrieving revision 1.9
diff -u -u -r1.9 Mmakefile
--- Mmakefile	1997/09/30 14:22:23	1.9
+++ Mmakefile	1998/04/02 12:46:10
@@ -63,7 +63,7 @@
 
 .PHONY: clean
 clean:
-	rm -f $(OBJECTS) $(PIC_OBJECTS) clpr_main.o
+	rm -f $(OBJECTS) $(PIC_OBJS) clpr_main.o
 
 .PHONY: realclean
 realclean: clean

-- 
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