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 --- source4/setup/wscript_build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/setup/wscript_build') diff --git a/source4/setup/wscript_build b/source4/setup/wscript_build index ea06750aee..59112b8f36 100644 --- a/source4/setup/wscript_build +++ b/source4/setup/wscript_build @@ -3,7 +3,8 @@ bld.INSTALL_WILDCARD('${SETUPDIR}', 'ad-schema/*.txt') bld.INSTALL_WILDCARD('${SETUPDIR}', 'display-specifiers/*.txt') -bld.INSTALL_FILES('${SBINDIR}','provision', chmod=0755, python_fixup=True) +O755 = 493 +bld.INSTALL_FILES('${SBINDIR}','provision', chmod=O755, python_fixup=True) bld.INSTALL_FILES('${PRIVATEDIR}', 'dns_update_list') -- cgit