Remove Xcode 3 compatibility patch, doesn't apply to latest HEAD

This commit is contained in:
2012-06-04 12:47:49 +01:00
parent afbbadc85d
commit de76955ab5

View File

@@ -56,11 +56,6 @@ def patches(opts = {})
'f5b58b8d5f06650749addbe2a198b8cf1d0ce5a3'
end
if opts[:xcode3]
p << 'https://raw.github.com/gist/2867761/' +
'0f7483a5985de5b49b4b9c155d999d16fc587bd9'
end
p
end
@@ -70,7 +65,7 @@ end
#
def parse_options
options = {:fullscreen => true, :srgb => true, :xcode3 => true}
options = {:fullscreen => true, :srgb => true}
OptionParser.new do |opts|
opts.banner = "Usage: ./build-emacs-for-osx [options] [branch/tag/sha]"
@@ -82,10 +77,6 @@ def parse_options
opts.on('--no-srgb', "Skip sRGB patch.") do
options[:srgb] = false
end
opts.on("--no-xcode3", "Skip Xcode 3 patch (harmless to Xcode 4).") do
options[:xcode3] = false
end
end.parse!
options