diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-09-08 22:11:55 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-08 22:11:55 +0200 |
commit | 3c58fb27b0deb4971a77e8aa5ba74d984b81ab7c (patch) | |
tree | 970874cd49b13c5f37008b656463068aec5dfc7a /source4/setup | |
parent | 17e96d8194c1d1ded747f11ffe93ff9eaa0d4266 (diff) | |
download | samba-3c58fb27b0deb4971a77e8aa5ba74d984b81ab7c.tar.gz samba-3c58fb27b0deb4971a77e8aa5ba74d984b81ab7c.tar.xz samba-3c58fb27b0deb4971a77e8aa5ba74d984b81ab7c.zip |
setup: Use standard octal ints rather than harcoding.
Diffstat (limited to 'source4/setup')
-rw-r--r-- | source4/setup/wscript_build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/setup/wscript_build b/source4/setup/wscript_build index 2d1e3ece52..f337e6f526 100644 --- a/source4/setup/wscript_build +++ b/source4/setup/wscript_build @@ -3,8 +3,7 @@ bld.INSTALL_WILDCARD('${SETUPDIR}', 'ad-schema/*.txt') bld.INSTALL_WILDCARD('${SETUPDIR}', 'display-specifiers/*.txt') -O755 = 493 -bld.INSTALL_FILES('${SBINDIR}','provision', chmod=O755, python_fixup=True) +bld.INSTALL_FILES('${SBINDIR}', 'provision', chmod=0755, python_fixup=True) bld.INSTALL_FILES('${SETUPDIR}', 'dns_update_list') bld.INSTALL_FILES('${SETUPDIR}', 'spn_update_list') |