From 24930aa716c3501b336e8f5534590e968d837aaf Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 19 Jun 2010 16:00:04 +0200 Subject: wafsamba: Use octal modes directly rather than constants. --- buildtools/wafsamba/samba_install.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'buildtools/wafsamba/samba_install.py') diff --git a/buildtools/wafsamba/samba_install.py b/buildtools/wafsamba/samba_install.py index 41722098bc..488729bc51 100644 --- a/buildtools/wafsamba/samba_install.py +++ b/buildtools/wafsamba/samba_install.py @@ -7,8 +7,6 @@ import Options from TaskGen import feature, before, after from samba_utils import * -O755 = 493 - @feature('install_bin') @after('apply_core') @before('apply_link', 'apply_obj_vars') @@ -43,7 +41,7 @@ def install_binary(self): # tell waf to install the right binary bld.install_as(os.path.join(install_path, orig_target), os.path.join(self.path.abspath(bld.env), self.target), - chmod=O755) + chmod=0755) -- cgit