From: Stefan Metzmacher Date: Mon, 13 Dec 2010 10:53:03 +0000 (+0100) Subject: s4:heimdal_build: replace '+' by '_' for vscripts in HEIMDAL_LIBRARY() X-Git-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=1865bdc0f0129e03c4c71f1eef1c3d1bc55678e7 s4:heimdal_build: replace '+' by '_' for vscripts in HEIMDAL_LIBRARY() metze --- diff --git a/source4/heimdal_build/wscript_build b/source4/heimdal_build/wscript_build index 5607701d29f2..16af81acc38d 100644 --- a/source4/heimdal_build/wscript_build +++ b/source4/heimdal_build/wscript_build @@ -242,8 +242,9 @@ def HEIMDAL_LIBRARY(libname, source, deps, vnum, if bld.env.HAVE_LD_VERSION_SCRIPT: vscript = "%s.vscript" % libname + namespace = version.replace("-","_").replace("+","_").upper(), HEIMDAL_GENERATOR(vscript, - rule="echo %s \{ global: \*\; \}\; > ${TGT}" % version.replace("-","_").upper(), + rule="echo %s \{ global: \*\; \}\; > ${TGT}" % namespace, group='vscripts', target=vscript) ldflags.append("-Wl,--version-script=%s/%s" % (bld.path.abspath(bld.env), vscript))