aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-01-16 22:39:09 -0600
committerJack Nagel2012-01-16 22:39:09 -0600
commit2dc91164152caae7cd15ce6bffc6c44f3ddc62e5 (patch)
tree30c765422aa81cf2e6b3746463ede71741cf86b8 /Library
parenta95a235e0c12bf6cb583a0f6a9cfee72b9aec624 (diff)
downloadhomebrew-2dc91164152caae7cd15ce6bffc6c44f3ddc62e5.tar.bz2
pil: fix typo
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pil.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/pil.rb b/Library/Formula/pil.rb
index a861128a8..96f363dc1 100644
--- a/Library/Formula/pil.rb
+++ b/Library/Formula/pil.rb
@@ -15,7 +15,7 @@ class Pil < Formula
archs.remove_ppc!
# Can't build universal on 32-bit hardware. See:
# https://github.com/mxcl/homebrew/issues/5844
- archs.delete! :x86_64 if Hardware.is_32_bit?
+ archs.delete :x86_64 if Hardware.is_32_bit?
ENV['ARCHFLAGS'] = archs.as_arch_flags
inreplace "setup.py" do |s|