Don't compare versions against floating point numbers

This commit is contained in:
Jack Nagel 2014-08-09 22:00:23 -05:00
parent 04056284ba
commit 11470e2a1a

View File

@ -319,7 +319,7 @@ def check_for_stray_developer_directory
end
def check_for_bad_install_name_tool
return if MacOS.version < 10.9
return if MacOS.version < "10.9"
libs = `otool -L /usr/bin/install_name_tool`
unless libs.include? "/usr/lib/libxcselect.dylib" then <<-EOS.undent