[m-dev.] trivial diff: fix quoting bug in LINK_SHARED_OBJ

Fergus Henderson fjh at cs.mu.OZ.AU
Thu Nov 25 10:45:47 AEDT 1999


Estimated hours taken: 0.1

configure.in:
	Fix a quoting bug in my last change.

Workspace: /home/mercury0/public/test_mercury/test_dirs/murlibobo/mercury
Index: configure.in
===================================================================
RCS file: /home/staff/zs/imp/mercury/configure.in,v
retrieving revision 1.193
diff -u -d -r1.193 configure.in
--- configure.in	1999/11/24 04:04:07	1.193
+++ configure.in	1999/11/24 23:30:27
@@ -1920,10 +1920,10 @@
 		;;
 	alpha-dec-osf*)
 		AC_MSG_RESULT(yes)
-		LINK_SHARED_OBJ='gcc -shared \
-		-Wl,-O3,-update_registry,$(SO_LOCATIONS_DIR)so_locations'
-		LINK_SHARED_OBJ_SH='gcc -shared \
-		-Wl,-O3,-update_registry,${SO_LOCATIONS_DIR}so_locations'
+		LINK_SHARED_OBJ="gcc -shared \
+		-Wl,-O3,-update_registry,\$(SO_LOCATIONS_DIR)so_locations"
+		LINK_SHARED_OBJ_SH="gcc -shared \
+		-Wl,-O3,-update_registry,\${SO_LOCATIONS_DIR}so_locations"
 		ERROR_UNDEFINED="-Wl,-error_unresolved"
 		EXE_RPATH_OPT="-Wl,-rpath,"
 		EXE_RPATH_SEP=":"
@@ -1935,12 +1935,12 @@
 		EXT_FOR_PIC_OBJECTS=o
 		;;
 	mips-sgi-irix5.*)
-		LINK_SHARED_OBJ='ld -shared \
-			-update_registry $(SO_LOCATIONS_DIR)so_locations \
-			-quickstart_info -rdata_shared'
-		LINK_SHARED_OBJ_SH='ld -shared \
-			-update_registry ${SO_LOCATIONS_DIR}so_locations \
-			-quickstart_info -rdata_shared'
+		LINK_SHARED_OBJ="ld -shared \
+			-update_registry \$(SO_LOCATIONS_DIR)so_locations \
+			-quickstart_info -rdata_shared"
+		LINK_SHARED_OBJ_SH="ld -shared \
+			-update_registry \${SO_LOCATIONS_DIR}so_locations \
+			-quickstart_info -rdata_shared"
 		ERROR_UNDEFINED="-no_unresolved"
 		EXE_RPATH_OPT="-Wl,-rpath,"
 		EXE_RPATH_SEP=":"

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