trivial diff: Mmakefile: bug fix for --use-subdirs
Fergus Henderson
fjh at cs.mu.OZ.AU
Mon Jun 1 11:27:38 AEST 1998
Mmakefile:
Add a missing $(deps_subdir) before a reference to library.dep,
so that it works with --use-subdirs.
It already had the $(dep_subdir) in front of all the
references to compiler.dep and profiler.dep, I had just
accidentally missed one occurrence of library.dep.
Index: Mmakefile
===================================================================
RCS file: /home/mercury1/repository/mercury/Mmakefile,v
retrieving revision 1.22
diff -u -r1.22 Mmakefile
--- Mmakefile 1998/04/28 06:15:10 1.22
+++ Mmakefile 1998/06/01 01:22:30
@@ -42,7 +42,7 @@
.PHONY: dep_library
dep_library: library/$(deps_subdir)library.dep
-library/library.dep:
+library/$(deps_subdir)library.dep:
cd library && $(SUBDIR_MMAKE) depend
.PHONY: dep_compiler
--
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