From 780a90d6dab483185248979afdb2597e38539b16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Tue, 19 Nov 2013 18:35:11 +0100 Subject: [PATCH] Fix InstallPerm method so it will also work with --install-sandbox --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 246cdf7..e58e9ac 100644 --- a/SConstruct +++ b/SConstruct @@ -81,7 +81,7 @@ def InstallPerm(env, dest, files, perm): obj = env.Install(dest, files) for i in obj: env.AddPostAction(i, Chmod(str(i), perm)) - return dest + return obj env = Environment(tools = ['default', 'textfile'])