[m-dev.] diff: fix Mmake bug

Fergus Henderson fjh at cs.mu.OZ.AU
Thu Feb 10 19:19:18 AEDT 2000


Estimated hours taken: 0.5

scripts/Mmake.rules:
	Fix a portability problem: we need a ";" before the "}".

Workspace: /d-drive/home/hg/fjh/mercury
Index: scripts/Mmake.rules
===================================================================
RCS file: /home/mercury1/repository/mercury/scripts/Mmake.rules,v
retrieving revision 1.75
diff -u -d -r1.75 Mmake.rules
--- scripts/Mmake.rules	2000/01/14 01:33:43	1.75
+++ scripts/Mmake.rules	2000/02/10 08:17:57
@@ -365,7 +365,7 @@
 	{ mv tmp_dir/*.c $(cs_subdir). ; \
 	  mv tmp_dir/*.o $(os_subdir). ; \
 	  mv tmp_dir/*.pic_o $(os_subdir). ; \
-	  mv tmp_dir/* . ; rmdir tmp_dir ; true }
+	  mv tmp_dir/* . ; rmdir tmp_dir ; true; }
 
 lib%.install_split_grades:
 	rm -rf tmp_dir && \
@@ -379,7 +379,7 @@
 		fi; \
 	done && \
 	{ mv tmp_dir/*.dir $(dirs_subdir). ; \
-	  mv tmp_dir/* . ; rmdir tmp_dir ; true }
+	  mv tmp_dir/* . ; rmdir tmp_dir ; true; }
 
 
 .PHONY: install_lib_dirs

-- 
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.
--------------------------------------------------------------------------
mercury-developers mailing list
Post messages to:       mercury-developers at cs.mu.oz.au
Administrative Queries: owner-mercury-developers at cs.mu.oz.au
Subscriptions:          mercury-developers-request at cs.mu.oz.au
--------------------------------------------------------------------------



More information about the developers mailing list