trivial diff: configure.in: fix cut-and-paste bug

Fergus Henderson fjh at cs.mu.OZ.AU
Thu Jun 25 03:00:17 AEST 1998


Estimated hours taken: 2

configure.in:
	Fix a cut-and-paste error in Tom's parallelism changes,
	which was breaking lots of stuff: it was setting BYTES_PER_WORD
	instead of SYNC_TERM_SIZE.

Index: configure.in
===================================================================
RCS file: /home/mercury1/repository/mercury/configure.in,v
retrieving revision 1.131
diff -u -r1.131 configure.in
--- configure.in	1998/06/18 15:08:04	1.131
+++ configure.in	1998/06/24 16:51:59
@@ -809,7 +809,7 @@
 )
 AC_MSG_RESULT($mercury_cv_sync_term_size)
 AC_DEFINE_UNQUOTED(SYNC_TERM_SIZE, $mercury_cv_sync_term_size)
-BYTES_PER_WORD=$mercury_cv_sync_term_size
+SYNC_TERM_SIZE=$mercury_cv_sync_term_size
 AC_SUBST(SYNC_TERM_SIZE)
 #-----------------------------------------------------------------------------#
 AC_MSG_CHECKING(the number of bits per word)

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