summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rwxr-xr-xtool/mkconfig.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb
index edfdda203b..586eb9ec59 100755
--- a/tool/mkconfig.rb
+++ b/tool/mkconfig.rb
@@ -347,7 +347,7 @@ print <<EOS
#
# returns updated keys list, or +nil+ if nothing changed.
def RbConfig.fire_update!(key, val, mkconf = MAKEFILE_CONFIG, conf = CONFIG)
- return if (old = mkconf[key]) == val
+ return if mkconf[key] == val
mkconf[key] = val
keys = [key]
deps = []