[cig-commits] commit: Luke asked me to commit this.

Mercurial hg at geodynamics.org
Mon Nov 24 11:22:45 PST 2008


changeset:   27:5e01068dc525
user:        LukeHodkinson
date:        Tue Feb 12 03:19:04 2008 +0000
files:       StgSCons
description:
Luke asked me to commit this.


diff -r 3d752e5c98d7 -r 5e01068dc525 StgSCons
--- a/StgSCons	Tue Feb 12 03:18:34 2008 +0000
+++ b/StgSCons	Tue Feb 12 03:19:04 2008 +0000
@@ -56,13 +56,13 @@ def build_library(env, objs, name, libs=
     objs = objs if isinstance(objs, list) else [objs]
     dst = os.path.join('#build', 'lib', name)
     if force_name:
-        cur_node = env.LoadableModule(
+        cur_node = env.SharedLibrary(
             dst, objs,
             SHLIBPREFIX='',
             LIBPREFIXES=[env['LIBPREFIXES']] + [''],
 	    LIBS=env['LIBS'] + libs)
     else:
-        cur_node = env.LoadableModule(dst, objs)
+        cur_node = env.SharedLibrary(dst, objs)
     env.lib_nodes.append(cur_node)
 
 def build_tests(env, files, name, sup_objs=[], libs=None):



More information about the CIG-COMMITS mailing list