wafsamba: remove unused private_library argument of PRIVATE_NAME()
[samba.git] / buildtools / wafsamba / samba_bundled.py
index 6ca6cde0e25cf44c71fe1854e41ad1c8671a04bc..72eca18cb28dc31173efecef949c837da0448476 100644 (file)
@@ -5,12 +5,9 @@ from waflib import Build, Options, Logs
 from waflib.Configure import conf
 from wafsamba import samba_utils
 
-def PRIVATE_NAME(bld, name, private_extension, private_library):
+def PRIVATE_NAME(bld, name, private_extension):
     '''possibly rename a library to include a bundled extension'''
 
-    if not private_library:
-        return name
-
     # we now use the same private name for libraries as the public name.
     # see http://git.samba.org/?p=tridge/junkcode.git;a=tree;f=shlib for a
     # demonstration that this is the right thing to do