aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMax Howell2009-09-22 10:53:29 +0100
committerMax Howell2009-09-22 10:54:27 +0100
commitb01c13d11cee68b0b46c9fbdc2d65b7304124119 (patch)
treec0261797a58a0e48672f32480c5a0ec362fa3d25 /Library/Formula
parent7d19be07896a902c9db5b46b432551d62a084cfb (diff)
downloadhomebrew-b01c13d11cee68b0b46c9fbdc2d65b7304124119.tar.bz2
ImageMagick install works, fixes #35
Careless mistake from me.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/imagemagick.rb6
-rw-r--r--Library/Formula/scummvm.rb1
2 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/imagemagick.rb b/Library/Formula/imagemagick.rb
index f745ef12c..3755ebad0 100644
--- a/Library/Formula/imagemagick.rb
+++ b/Library/Formula/imagemagick.rb
@@ -36,9 +36,9 @@ class Imagemagick <Formula
system "make install"
# We already copy these into the keg root
- (share+'NEWS.txt').unlink
- (share+'LICENSE').unlink
- (share+'ChangeLog').unlink
+ (share+'ImageMagick'+'NEWS.txt').unlink
+ (share+'ImageMagick'+'LICENSE').unlink
+ (share+'ImageMagick'+'ChangeLog').unlink
end
def caveats
diff --git a/Library/Formula/scummvm.rb b/Library/Formula/scummvm.rb
index c9ac10a3a..46a7fe6a1 100644
--- a/Library/Formula/scummvm.rb
+++ b/Library/Formula/scummvm.rb
@@ -21,7 +21,6 @@ prefer to use theirs. If so type `brew home scummvm' to visit their site.
def install
system "./configure --prefix='#{prefix}' --disable-debug"
system "make install"
- share=prefix+'share'
(share+'pixmaps').rmtree
end
end