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 /pidl/wscript | |
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 'pidl/wscript')
-rw-r--r-- | pidl/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pidl/wscript b/pidl/wscript index f2b65c864b..8cb0c6f5b3 100644 --- a/pidl/wscript +++ b/pidl/wscript @@ -1,6 +1,7 @@ #!/usr/bin/env python import os +from samba_utils import MODE_755 def set_options(opt): opt.tool_options('perl') @@ -18,7 +19,7 @@ def configure(conf): conf.find_program('pod2man', var='POD2MAN') def build(bld): - bld.INSTALL_FILES('${BINDIR}', 'pidl', chmod=0755) + bld.INSTALL_FILES('${BINDIR}', 'pidl', chmod=MODE_755) bld.RECURSE('lib') |