diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-06 20:11:01 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-06 11:13:05 +0000 |
commit | c24240bcd2f833321f45ea4ce0b6c6d080a3b990 (patch) | |
tree | 0075709dd705752b56ee242bd01a72092c6a22c9 /source4/setup | |
parent | 8fcccae6aa4f48e7ef03fbf8e5b5f24ea0209d2e (diff) | |
download | samba-c24240bcd2f833321f45ea4ce0b6c6d080a3b990.tar.gz samba-c24240bcd2f833321f45ea4ce0b6c6d080a3b990.tar.bz2 samba-c24240bcd2f833321f45ea4ce0b6c6d080a3b990.zip |
waf: fixed some python3.x portability issues
these have crept into the tree over time. Maybe we should add testing
of a range of python versions to autobuild?
Diffstat (limited to 'source4/setup')
-rw-r--r-- | source4/setup/wscript_build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/setup/wscript_build b/source4/setup/wscript_build index f337e6f526..241e8b8686 100644 --- a/source4/setup/wscript_build +++ b/source4/setup/wscript_build @@ -1,9 +1,11 @@ #!/usr/bin/env python +from samba_utils import MODE_755 + 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('${SBINDIR}', 'provision', chmod=MODE_755, python_fixup=True) bld.INSTALL_FILES('${SETUPDIR}', 'dns_update_list') bld.INSTALL_FILES('${SETUPDIR}', 'spn_update_list') |