From 7f3116a63d7d91f4c0d26adf8fcdef0a5a957971 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Thu, 8 Apr 2010 07:45:46 +1000 Subject: build: allow the waf build to work with python 3.0 and 3.1 Python 3.x is a bit fussier about print statements and indentation. Signed-off-by: Andrew Tridgell --- pidl/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pidl/wscript') diff --git a/pidl/wscript b/pidl/wscript index f8d12c1c07..872e2385de 100644 --- a/pidl/wscript +++ b/pidl/wscript @@ -16,9 +16,9 @@ def configure(conf): # yapp is used for building the parser conf.find_program('yapp', var='YAPP') - +O755 = 493 def build(bld): - bld.INSTALL_FILES('${BINDIR}', 'pidl', chmod=0755) + bld.INSTALL_FILES('${BINDIR}', 'pidl', chmod=O755) bld.RECURSE('lib') -- cgit