1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-03 12:58:35 +03:00

testsuite/headers: remove unused checks for ntdb.h

ntdb is already removed.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Karolin Seeger <kseeger@samba.org>
This commit is contained in:
Stefan Metzmacher 2015-07-21 09:24:42 +02:00 committed by Andreas Schneider
parent b86df6e47c
commit 54ea6ff788

View File

@ -8,10 +8,6 @@ def build_test_headers(task):
f.write('/* generated header test */\n')
hlist = task.env.public_headers_list[:]
hlist.sort()
# We need to include tdb.h before ntdb.h. It's the rules!
if 'tdb.h' in hlist and 'ntdb.h' in hlist:
hlist.remove('ntdb.h')
hlist.append('ntdb.h')
for h in hlist:
f.write('#include "%s"\n' % os.path.normpath(h))