diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-27 11:04:19 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:09 +1000 |
commit | a2a4fee8c6e98595c918abfcc7e6bd175fd79d68 (patch) | |
tree | 3ff1a84cee0476b4f9bb18a164643c0caa0aef15 /source4/setup/wscript_build | |
parent | 03998d097079397c6a58a9317964a30e9c2c5b26 (diff) | |
download | samba-a2a4fee8c6e98595c918abfcc7e6bd175fd79d68.tar.gz samba-a2a4fee8c6e98595c918abfcc7e6bd175fd79d68.tar.bz2 samba-a2a4fee8c6e98595c918abfcc7e6bd175fd79d68.zip |
s4-waf: forgot these files
Diffstat (limited to 'source4/setup/wscript_build')
-rw-r--r-- | source4/setup/wscript_build | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/source4/setup/wscript_build b/source4/setup/wscript_build new file mode 100644 index 0000000000..1ad5edc6d9 --- /dev/null +++ b/source4/setup/wscript_build @@ -0,0 +1,20 @@ +bld.INSTALL_WILDCARD('${SETUPDIR}', 'ad-schema/*.txt') +bld.INSTALL_WILDCARD('${SETUPDIR}', 'display-specifiers/*.txt') + +bld.INSTALL_FILES('${SBINDIR}','provision', chmod=0755, python_fixup=True) + +bld.INSTALL_FILES('${PRIVATEDIR}', 'dns_update_list') + +for p in '''schema-map-* DB_CONFIG *.inf *.ldif *.reg *.zone *.conf *.php *.txt + named.conf named.conf.update provision.smb.conf.dc provision.smb.conf.member + provision.smb.conf.standalone'''.split(): + bld.INSTALL_WILDCARD('${SETUPDIR}', p) + +# echo "Installing external python libraries" +# mkdir -p $PYTHONDIR/samba_external || exit 1 +# for p in $($PYTHON scripting/python/samba_external/missing.py); +# do +# echo "Installing missing python library $p" +# mkdir -p $PYTHONDIR/samba_external/$p +# cp -r scripting/python/samba_external/$p/* $PYTHONDIR/samba_external/$p/ || exit 1 +# done |