mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
wafsamba: add optional keep_underscore=True to SAMBA_LIBRARY()
Bug: https://bugzilla.samba.org/show_bug.cgi?id=9299 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
e0bf5dd456
commit
82e583b04b
@ -110,6 +110,7 @@ def SAMBA_LIBRARY(bld, libname, source,
|
||||
ldflags='',
|
||||
external_library=False,
|
||||
realname=None,
|
||||
keep_underscore=False,
|
||||
autoproto=None,
|
||||
autoproto_extra_source='',
|
||||
group='main',
|
||||
@ -212,7 +213,10 @@ def SAMBA_LIBRARY(bld, libname, source,
|
||||
libname)
|
||||
|
||||
if target_type == 'PYTHON' or realname or not private_library:
|
||||
bundled_name = libname.replace('_', '-')
|
||||
if keep_underscore:
|
||||
bundled_name = libname
|
||||
else:
|
||||
bundled_name = libname.replace('_', '-')
|
||||
else:
|
||||
bundled_name = PRIVATE_NAME(bld, libname, bundled_extension,
|
||||
private_library)
|
||||
|
Loading…
Reference in New Issue
Block a user