From 1865bdc0f0129e03c4c71f1eef1c3d1bc55678e7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 13 Dec 2010 11:53:03 +0100 Subject: [PATCH] s4:heimdal_build: replace '+' by '_' for vscripts in HEIMDAL_LIBRARY() metze --- source4/heimdal_build/wscript_build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)) -- 2.34.1