From 866b40d8728b2f5d58082d97278c784b9fd06c3e Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 14 Mar 2022 00:34:52 -0400 Subject: [PATCH] Configure parameters should not be stored as unscoped construction variables - close #160 --- lib/rscons/configure_op.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/rscons/configure_op.rb b/lib/rscons/configure_op.rb index ba89f37..9395747 100644 --- a/lib/rscons/configure_op.rb +++ b/lib/rscons/configure_op.rb @@ -23,14 +23,11 @@ module Rscons $stdout.puts "Configuring project..." end end - vars = {} Task["configure"].params.each do |name, param| unless Rscons.application.silent_configure Ansi.write($stdout, "Setting #{name}... ", :green, param.value, :reset, "\n") end - vars[name] = param.value end - store_merge(vars) end # Close the log file handle.