| Index: samples/SConscript
 | 
| diff --git a/samples/SConscript b/samples/SConscript
 | 
| index 31990b681be324c4c3681d10b928c02833fb4dae..84c48c9047b694b965319d09f59e3f12491d468e 100644
 | 
| --- a/samples/SConscript
 | 
| +++ b/samples/SConscript
 | 
| @@ -26,10 +26,10 @@
 | 
|  # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 | 
|  
 | 
|  from os.path import join
 | 
| -Import('sample context')
 | 
| +Import('sample context tools')
 | 
|  
 | 
|  def ConfigureObjectFiles():
 | 
| -  env = Environment()
 | 
| +  env = Environment(tools=tools)
 | 
|    env.Replace(**context.flags['sample'])
 | 
|    context.ApplyEnvOverrides(env)
 | 
|    return env.Object(sample + '.cc')
 | 
| 
 |