1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

wafsamba: Ignore some more symbols when checking for dupes.

This commit is contained in:
Jelmer Vernooij 2012-10-11 14:39:50 +02:00
parent 1ec5486338
commit 276460cf8a

View File

@ -569,7 +569,7 @@ def symbols_whyneeded(task):
def report_duplicate(bld, binname, sym, libs, fail_on_error):
'''report duplicated symbols'''
if sym in ['_init', '_fini']:
if sym in ['_init', '_fini', '_edata', '_end', '__bss_start']:
return
libnames = []
for lib in libs: