trivial diff: fix bug with missing -ldl

Fergus Henderson fjh at cs.mu.OZ.AU
Fri Mar 26 01:45:16 AEDT 1999


Estimated hours taken: 0.25

scripts/ml.in:
	Fix a bug: it was using the wrong variable name for the variable
	which holds the name of the library for dlopen() etc.
	(s/DL_LIB/DL_LIBRARY).

Index: scripts/ml.in
===================================================================
RCS file: /home/mercury1/repository/mercury/scripts/ml.in,v
retrieving revision 1.54
diff -u -r1.54 ml.in
--- ml.in	1999/03/18 10:55:52	1.54
+++ ml.in	1999/03/25 14:42:11
@@ -367,11 +367,11 @@
 
 case $trace in
 	true)	TRACE_LIBS="-l$TRACE_LIB_NAME -l$BROWSER_LIB_NAME \
-			$SOCKET_LIBRARY $DL_LIB"
+			$SOCKET_LIBRARY $DL_LIBRARY"
 		TRACE_STATIC_LIBS="\
 			$LIBDIR/$GRADE/$FULLARCH/lib$TRACE_LIB_NAME.a \
 			$LIBDIR/$GRADE/$FULLARCH/lib$BROWSER_LIB_NAME.a \
-			$SOCKET_LIBRARY $DL_LIB"
+			$SOCKET_LIBRARY $DL_LIBRARY"
 		;;
 	false)	TRACE_LIBS=
 		TRACE_STATIC_LIBS=

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