From c24240bcd2f833321f45ea4ce0b6c6d080a3b990 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 6 Oct 2010 20:11:01 +1100 Subject: 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? --- pidl/wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pidl/wscript') 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') -- cgit