From 62bd8ce2a8261c9393285e7c03e50386c73168a7 Mon Sep 17 00:00:00 2001 From: Mathew Robinson Date: Fri, 27 Oct 2017 15:17:35 -0400 Subject: SERVER-31781 Rename variable to not conflict with module name --- src/mongo/SConscript | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/mongo/SConscript') diff --git a/src/mongo/SConscript b/src/mongo/SConscript index 8c87dd8d3bc..e47f75afd66 100644 --- a/src/mongo/SConscript +++ b/src/mongo/SConscript @@ -644,10 +644,12 @@ compass_installer = env.Substfile('#/src/mongo/installer/compass/' + compass_scr ('@compass_type@', compass_type) ]) distBinaries.append(compass_installer) + compass_script_installer = env.Install("$INSTALL_DIR/bin", compass_installer) if env.TargetOSIs('posix'): env.AddPostAction( compass_script_installer, 'chmod 755 $TARGET' ) + env.AddPostAction( compass_installer, 'chmod 755 $TARGET' ) # "dist" target is valid only when --use-new-tools is specified # Attempts to build release artifacts without tools must fail -- cgit v1.2.1