aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-08-13 11:09:57 -0500
committerJack Nagel2014-08-13 11:09:57 -0500
commitf3bd86571f8ad419f8f0a6b1909b5b6322191a6f (patch)
tree2b3336dd433fafa79505f96f7ee22800653379e2
parentd796286b886c63c32081467901e658c9952e9e62 (diff)
downloadhomebrew-f3bd86571f8ad419f8f0a6b1909b5b6322191a6f.tar.bz2
Only store strings in the tab object
-rw-r--r--Library/Homebrew/tab.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb
index edba1d0e6..202c02302 100644
--- a/Library/Homebrew/tab.rb
+++ b/Library/Homebrew/tab.rb
@@ -11,8 +11,8 @@ class Tab < OpenStruct
FILENAME = 'INSTALL_RECEIPT.json'
def self.create(formula, compiler, stdlib, build)
- Tab.new :used_options => build.used_options,
- :unused_options => build.unused_options,
+ Tab.new :used_options => build.used_options.map(&:to_s),
+ :unused_options => build.unused_options.map(&:to_s),
:tabfile => formula.prefix.join(FILENAME),
:built_as_bottle => !!ARGV.build_bottle?,
:poured_from_bottle => false,