mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
7c0575d7ba
The wildcard *.conf already lists named.conf. Adding files more than once will cause unnecessary rebuilds and raise errors in later Waf versions. Signed-off-by: Thomas Nagy <tnagy@waf.io> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
13 lines
429 B
Python
13 lines
429 B
Python
#!/usr/bin/env python
|
|
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', 'ad-schema/*.txt')
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', 'display-specifiers/*.txt')
|
|
|
|
bld.INSTALL_FILES('${SETUPDIR}', 'dns_update_list')
|
|
bld.INSTALL_FILES('${SETUPDIR}', 'spn_update_list')
|
|
|
|
for p in '''schema-map-* DB_CONFIG *.inf *.ldif *.reg *.zone *.conf *.php *.txt
|
|
named.conf.update named.conf.dlz'''.split():
|
|
bld.INSTALL_WILDCARD('${SETUPDIR}', p)
|
|
|